This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" CVim settings for auto sync | |
" Nothing special here, just my key mappings | |
let hintcharacters = "jfkdhglsautnvyb" | |
map <C-d> scrollPageDown | |
map <C-u> scrollPageUp | |
" The unmaps the default 'k' mapping | |
" unmap k | |
unmap d | |
unmap x |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git src/ui/download_list.cc src/ui/download_list.cc | |
index e3abc9a..4684f0c 100644 | |
--- src/ui/download_list.cc | |
+++ src/ui/download_list.cc | |
@@ -349,11 +349,14 @@ DownloadList::setup_keys() { | |
m_uiArray[DISPLAY_LOG]->bindings()[KEY_LEFT] = | |
m_uiArray[DISPLAY_LOG]->bindings()['B' - '@'] = | |
- m_uiArray[DISPLAY_LOG]->bindings()[' '] = std::tr1::bind(&DownloadList::activate_display, this, DISPLAY_DOWNLOAD_LIST); | |
+ m_uiArray[DISPLAY_LOG]->bindings()[' '] = |
NewerOlder