Browse Source

Merge pull request #118 from eidheim/master

Correct next/previous tab keys for Linux #Release
merge-requests/365/head v1.0.0
Jørgen Lien Sellæg 10 years ago
parent
commit
191a2f50ac
  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>Tab\",\n"
" \"previous_tab\": \"<primary><shift>Tab\",\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