예제 #1
0
파일: new_user.py 프로젝트: philipdexter/vx
 def _switch_to_hopscotch():
     keybinding_tables.remove(sb.keybinding_table)
     from vx.keybindings import hopscotch
     sb.keybinding_table = hopscotch.load(sb)
     keybinding_tables.insert(0, sb.keybinding_table)
     sb.keybinding_table.bind(ctrl + keys.o, _copy_rc_py)
예제 #2
0
파일: new_user.py 프로젝트: tj90241/vx
 def _switch_to_concat():
     keybinding_tables.remove(w.keybinding_table)
     from vx.keybindings import concat
     w.keybinding_table = concat.load(w)
     keybinding_tables.insert(0, w.keybinding_table)
     w.keybinding_table.bind(ctrl + keys.o, _copy_rc_py)
예제 #3
0
파일: new_user.py 프로젝트: philipdexter/vx
 def _switch_to_concat():
     keybinding_tables.remove(sb.keybinding_table)
     from vx.keybindings import concat
     sb.keybinding_table = concat.load(sb)
     keybinding_tables.insert(0, sb.keybinding_table)
     sb.keybinding_table.bind(ctrl + keys.o, _copy_rc_py)
예제 #4
0
파일: new_user.py 프로젝트: philipdexter/vx
 def _switch_to_hopscotch():
     keybinding_tables.remove(sb.keybinding_table)
     from vx.keybindings import hopscotch
     sb.keybinding_table = hopscotch.load(sb)
     keybinding_tables.insert(0, sb.keybinding_table)
     sb.keybinding_table.bind(ctrl + keys.o, _copy_rc_py)