Add :RStrip command to strip trailing white space
This commit is contained in:
parent
f95a8fb8e5
commit
f0c74a76e0
@ -1,3 +1,12 @@
|
||||
-- :RString Strip white psace from right of all lines
|
||||
-- TODO: Make this work on a range
|
||||
vim.api.nvim_create_user_command('RStrip', function(_)
|
||||
local cursor_pos = vim.fn.getcurpos(vim.api.nvim_get_current_win())
|
||||
vim.cmd [[ execute '%s/\s\+$//e' ]]
|
||||
vim.cmd [[ nohlsearch ]]
|
||||
vim.fn.setpos('.', cursor_pos)
|
||||
end, {})
|
||||
|
||||
-- :TabWidth <N> set the tab width for the current buffer
|
||||
vim.api.nvim_create_user_command('TabWidth', function(opts)
|
||||
-- Set the tab width for the current filetype
|
||||
|
Loading…
x
Reference in New Issue
Block a user