Quellcode durchsuchen

add easier pentadactyl navigation

Weiyi Lou vor 13 Jahren
Ursprung
Commit
845e1fa311
1 geänderte Dateien mit 30 neuen und 1 gelöschten Zeilen
  1. 30 1
      pentadactyl/pentadactylrc

+ 30 - 1
pentadactyl/pentadactylrc

@@ -1,4 +1,33 @@
+""""""""""""""""""""""""
+" Options
+""""""""""""""""""""""""
+
 " pentadactyl gui options
-" right scroll, bottom scroll, Cmdline outside status, Bookmark bar, Tab number, Status bar
 set guioptions=rbCBns
+" In order: right/bottom scrollbars, Cmdline outside status, Bookmark bar,
+" Tab number, Statusbar
+
+" set another default search engine. Need to install a search engine through
+" firefox first
+" http://superuser.com/questions/358935/pentadactyl-with-duckduckgo-as-default-search-engine
 " set defsearch=duckduckgo-ssl
+
+
+""""""""""""""""""""""""
+" Mappings
+""""""""""""""""""""""""
+
+map , <leader>
+
+" faster j/k scrolling
+map j 5<C-e>
+map k 5<C-y>
+map J <C-d>
+map K <C-u>
+
+" easier switching of tabs (instead of cmd+shift '[' and ']' )
+map l gt
+map h gT
+
+" reload pentadactylrc
+map <C-r> :source ~/.pentadactylrc<CR>:echo "Configuration Reloaded (~/.pentadactylrc)"<CR>