diff options
Diffstat (limited to 'nvim/ftplugin/php.lua')
| -rw-r--r-- | nvim/ftplugin/php.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nvim/ftplugin/php.lua b/nvim/ftplugin/php.lua index a34bb10..8d7c165 100644 --- a/nvim/ftplugin/php.lua +++ b/nvim/ftplugin/php.lua @@ -1,10 +1,10 @@ -local copy_indent_macro = "<Esc>0\"_D" -- clear current line +local copy_indent_macro = "<Esc>^\"_d0" -- clear current indentation .. "?.<CR>" -- find first non-empty line above .. "<cmd>noh<CR>" -- clear highlight .. "^\"yy0" -- copy indentation to y register - .. "<C-o>" -- return to original line - .. "\"yp" -- paste y register - .. "A" -- enter insert mode + .. "<C-o>0" -- return to original line + .. "\"yP" -- paste y register + .. "a" -- enter insert mode vim.keymap.set({ "n" }, "o", "o" .. copy_indent_macro, { buffer = 0 }) vim.keymap.set({ "n" }, "O", "O" .. copy_indent_macro, { buffer = 0 }) |
