Browse Source

Added correct next/previous tab keys for Linux (as in Chromium). Previous default keys did not work for me at least.

merge-requests/365/head
Ole Christian Eidheim 10 years ago
parent
commit
6b40e0e0ec
  1. 5
      src/files.h

5
src/files.h

@ -97,8 +97,13 @@ const std::string configjson =
" \"run_command\": \"<alt>Return\",\n" " \"run_command\": \"<alt>Return\",\n"
" \"kill_last_running\": \"<primary>Escape\",\n" " \"kill_last_running\": \"<primary>Escape\",\n"
" \"force_kill_last_running\": \"<primary><shift>Escape\",\n" " \"force_kill_last_running\": \"<primary><shift>Escape\",\n"
#ifdef __linux
" \"next_tab\": \"<primary>Page_Down\",\n"
" \"previous_tab\": \"<primary>Page_Up\",\n"
#else
" \"next_tab\": \"<primary><alt>Right\",\n" " \"next_tab\": \"<primary><alt>Right\",\n"
" \"previous_tab\": \"<primary><alt>Left\",\n" " \"previous_tab\": \"<primary><alt>Left\",\n"
#endif
" \"close_tab\": \"<primary>w\"\n" " \"close_tab\": \"<primary>w\"\n"
" },\n" " },\n"
" \"project\": {\n" " \"project\": {\n"

Loading…
Cancel
Save