Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e68350 commit 143846fCopy full SHA for 143846f
1 file changed
vimception.js
@@ -186,13 +186,14 @@ function combo_tap(combo, action) {
186
console.log('resetting f');
187
reset();
188
//cmd.add_shortcut(combo[0], reset)
189
- }, 800);
+ }, 500);
190
}
191
function reset(e) {
192
console.log('reset called');
193
//that(combo, action);
194
cmd.add_shortcut(combo[0], f);
195
196
+ console.log("combo tap for", combo);
197
198
199
};
@@ -201,6 +202,14 @@ combo_tap('gg', focus_first);
201
202
203
// cut
204
combo_tap('dd', def_cmd['x']);
205
+//{
206
+// 'd' : {
207
+// help : 'delete cell (press twice)',
208
+// help_index : 'ej',
209
+// count: 2,
210
+//cmd.add_shortcut('d', def_cmd['x'] );
211
+
212
213
214
// copy
215
combo_tap('yy', def_cmd['c']);
0 commit comments