summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authornfnty <git@nfnty.se>2017-02-04 11:51:02 +0100
committernfnty <git@nfnty.se>2017-02-04 11:51:02 +0100
commit7a1933ff3eb14c0943411a3a2ded0e18904a01a3 (patch)
tree3120e26571046928e3cb5cdb30728f0ec068ca11 /ranger
parentb108f821d0838aaa5fea11a52c3620aec33a5340 (diff)
downloadranger-7a1933ff3eb14c0943411a3a2ded0e18904a01a3.tar.gz
config/rc.conf: `tab_new` opens a new tab in CWD by default
Diffstat (limited to 'ranger')
-rw-r--r--ranger/config/rc.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/config/rc.conf b/ranger/config/rc.conf
index 26879a65..a36ce9e4 100644
--- a/ranger/config/rc.conf
+++ b/ranger/config/rc.conf
@@ -417,7 +417,7 @@ map cm search_next order=mtime
 map ca search_next order=atime
 
 # Tabs
-map <C-n>     tab_new .
+map <C-n>     tab_new
 map <C-w>     tab_close
 map <TAB>     tab_move 1
 map <S-TAB>   tab_move -1
@@ -425,7 +425,7 @@ map <A-Right> tab_move 1
 map <A-Left>  tab_move -1
 map gt        tab_move 1
 map gT        tab_move -1
-map gn        tab_new ~
+map gn        tab_new
 map gc        tab_close
 map uq        tab_restore
 map <a-1>     tab_open 1
8'>148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204