We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7d510d commit adaa6bdCopy full SHA for adaa6bd
src/actions/globalActions.ts
@@ -789,6 +789,25 @@ export function loadGlobalActions(action: ActionExplorer) {
789
},
790
791
);
792
+ action.addNodeAction(
793
+ 'normal!',
794
+ async ({ args }) => {
795
+ if (args[0]) {
796
+ await nvim.command(`execute "normal! ${args[0]}"`);
797
+ }
798
+ },
799
+ 'execute vim normal mode commands without using mappings',
800
+ {
801
+ args: [
802
803
+ name: 'normal! commands',
804
805
+ ],
806
+ menus: {
807
+ zz: 'execute normal! zz',
808
809
810
+ );
811
action.addNodeAction(
812
'esc',
813
async ({ source, mode }) => {
0 commit comments