[nvim] change acronyms for glossary

This commit is contained in:
Marco Thomas
2022-10-31 23:31:54 +01:00
parent e27c00475d
commit cdacf72dc5
2 changed files with 16 additions and 7 deletions

View File

@@ -117,3 +117,10 @@ map <C-_> :noh<CR>
map <leader>gs :Git status<CR>
map <leader>gb :Git blame<CR>
map <C-s> :Git grep
fun! TrimWhitespace()
let l:save = winsaveview()
keeppatterns %s/\s\+$//e
call winrestview(l:save)
endfun
noremap <leader>ws :call TrimWhitespace()<CR>