From 26638b30d40f2e1f830f7216680444ff959e0708 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 22 Aug 2013 19:14:34 +0200 Subject: [PATCH] Introduce T for opening files in tabs Closes #39. --- autoload/startify.vim | 10 +++++++++- doc/startify.txt | 10 +++++----- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 8fc1bab..ed62b78 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -82,6 +82,7 @@ function! startify#insane_in_the_membrane() abort nnoremap i :enew startinsert nnoremap b :call set_mark('B') nnoremap s :call set_mark('S') + nnoremap t :call set_mark('T') nnoremap v :call set_mark('V') nnoremap :call open_buffers(expand('')) nnoremap <2-LeftMouse> :execute 'normal' matchstr(getline('.'), '\w\+') @@ -370,7 +371,7 @@ function! s:set_mark(type) abort setlocal modifiable " set markers - if id =~# '[BSV]' + if id =~# '[BSTV]' " replace marker by old ID execute 'normal! ci]'. remove(s:marked, line('.'))[0] else @@ -406,6 +407,13 @@ function! s:open_buffers(cword) abort else execute 'vsplit' path endif + " open in tab + elseif type == 'T' + if line2byte('$') == -1 + execute 'edit' path + else + execute 'tabnew' path + endif " open in current window else execute 'edit' path diff --git a/doc/startify.txt b/doc/startify.txt index 0fe8d32..74712ce 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -53,10 +53,10 @@ Startify basically provides two things: jumps into insert mode, 'q' quits. Moreover, you can open several files at one go. Navigate to an entry and - hit either 'b' (open in same window), 's' (open in split) or 'v' (open in - vertical split). You can do that for multiple entries. You can also mix - them. The order of the selections will be remembered. Afterwards execute - these actions via . + hit either 'b' (open in same window), 's' (open in split), 'v' (open in + vertical split) or 't' (open in tab). You can do that for multiple entries. + You can also mix them. The order of the selections will be remembered. + Afterwards execute these actions via . When the selection is finished, Startify will close automatically. You can reopen the screen via :Startify. @@ -261,7 +261,7 @@ NOTE: There is no sanitizing going on, so you should know what you're doing! Best practices: - do not use 'e', 'i' or 'q' (they will be overwritten anyway) -- do not use 'b', 's', 'v' (used for opening several files at once) +- do not use 'b', 's', 't', 'v' (used for opening several files at once) - do not use duplicates (previous mappings will be overwritten) - do not uses empty strings (creates unreachable entries) - you might want to keep 'j' and 'k' (for navigation)