diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-29 20:42:12 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-29 20:42:12 +0000 |
commit | 70791387cd15c6627811e150a289c99bb044c527 (patch) | |
tree | a27427b8a0776a02d494b997b8d72dc50ed97222 | |
parent | 2476d6a46dfac11d4f912b2273557501362cb49c (diff) |
Remaps tab key to switch tabs
-rw-r--r-- | vim/vimrc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -10,6 +10,10 @@ let maplocalleader = "\\" let mapleader = "," nnoremap <silent> <leader>idate :.!date +"\%F"<CR>Ea<space> nnoremap <leader>q :call TaskWarriorAddCurrentLine()<CR> +" nnoremap <C-h> :tabprevious<cr> +" nnoremap <C-l> :tabnext<cr> +" switch between tabs.... +nnoremap <tab> gt " pandoc command to generate weekly plan page in Firefox (or not, if we just " wish to refresh) nnoremap <leader>w :!pandoc /home/lemon/Documents/Notes/MOD/Projects/weekly_planning.md --css /home/lemon/.local/share/pandoc/templates/mystyles.css -s -o /tmp/toss.html; firefox /tmp/toss.html &<cr> @@ -256,7 +260,7 @@ let test#vimterminal#term_position = "belowright" " " sudo write " command! S :w !sudo tee % -nnoremap <Tab> % +"nnoremap <Tab> % " }}} " FZF {{{ " This is the default extra key bindings |