Using a special key in functionUsing an environment variable name as function argumentEscape return value key in mapping functionHow to escape strings containing keys (when mapping) or call function with noremapCarriage return as argument breaks the functionExecute normal is inserting “<tab>” instead of hitting tab keyE129 when calling the function by call()Converting from A to B using mapped keyHow to have vnoremap call function once?Why do functions in Vimscript require a “call” statement?Vim+Tmux: How to switch between Tmux Windows and Vim Tab Pages Seamlessly using the Alt Key?
Can an Aarakocra use a shield while flying?
What can plausibly explain many of my very long and low-tech bridges?
Which comes first? Multiple Imputation, Splitting into train/test, or Standardization/Normalization
How did they achieve the Gunslinger's shining eye effect in Westworld?
Should I give professor gift at the beginning of my PhD?
How to officially communicate to a non-responsive colleague?
Compiling c files on ubuntu and using the executable on Windows
How Can I Tell The Difference Between Unmarked Sugar and Stevia?
Should I compare a std::string to "string" or "string"s?
How to generate all commutative pairings of list elements?
Why is one of Madera Municipal's runways labelled with only "R" on both sides?
How does an ordinary object become radioactive?
Is open-sourcing the code of a webapp not recommended?
The eyes have it
Find the Factorial From the Given Prime Relationship
Random Unitary Matrices
Taxi Services at Didcot
Does an ice chest packed full of frozen food need ice?
What's the name of this light airplane?
PhD - Well known professor or well known school?
Can a black dragonborn's acid breath weapon destroy objects?
How to build suspense or so to establish and justify xenophobia of characters in the eyes of the reader?
Is the term 'open source' a trademark?
Understanding the TeXlive release cycle: What is the meaning of a TeXlive release and is it ever 'finished'?
Using a special key in function
Using an environment variable name as function argumentEscape return value key in mapping functionHow to escape strings containing keys (when mapping) or call function with noremapCarriage return as argument breaks the functionExecute normal is inserting “<tab>” instead of hitting tab keyE129 when calling the function by call()Converting from A to B using mapped keyHow to have vnoremap call function once?Why do functions in Vimscript require a “call” statement?Vim+Tmux: How to switch between Tmux Windows and Vim Tab Pages Seamlessly using the Alt Key?
I am trying to remap <PageUp>
key to call this function:
function! PageUp()
let l:line = line('.')
if(l:line != 1)
if(l:line != winline())
:set syntax=off
<PageUp>
:set syntax=on
else
normal! 1G
endif
endif
endfunction
but gvim complains that I cannot do it.
So what is the proper way to use the keys in a function ?
vimscript
add a comment |
I am trying to remap <PageUp>
key to call this function:
function! PageUp()
let l:line = line('.')
if(l:line != 1)
if(l:line != winline())
:set syntax=off
<PageUp>
:set syntax=on
else
normal! 1G
endif
endif
endfunction
but gvim complains that I cannot do it.
So what is the proper way to use the keys in a function ?
vimscript
add a comment |
I am trying to remap <PageUp>
key to call this function:
function! PageUp()
let l:line = line('.')
if(l:line != 1)
if(l:line != winline())
:set syntax=off
<PageUp>
:set syntax=on
else
normal! 1G
endif
endif
endfunction
but gvim complains that I cannot do it.
So what is the proper way to use the keys in a function ?
vimscript
I am trying to remap <PageUp>
key to call this function:
function! PageUp()
let l:line = line('.')
if(l:line != 1)
if(l:line != winline())
:set syntax=off
<PageUp>
:set syntax=on
else
normal! 1G
endif
endif
endfunction
but gvim complains that I cannot do it.
So what is the proper way to use the keys in a function ?
vimscript
vimscript
asked 8 hours ago
simo-zzsimo-zz
20418
20418
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
First of all, you use the PageUp key in Normal mode so the underlying functionality is a Normal mode command. You can't use such commands directly while in an Ex command-line or function/script. You need to use the Ex command :norm
for this.
Further, to use "key codes" (:h key-codes
) of non-printing characters like <PageUp>
you need to construct the :norm
command as an expression and pass it to the :exe
command (see last paragraph of :h :norm
).
That gives us:
:exe "norm <PageUp>"
The double quotes are required as is the to escape the keycode and indicate that you want the special meaning not the literal string "<PageUp>".
(Note: Usually we want to use norm!
instead of norm
in order to avoid conflicts with mappings but that's not a critical element of this answer so omitted.)
add a comment |
To send special key to :normal
, you need to get it's raw code by using "<key>"
notation.
exec "norm! <PageUp>"
You can also use raw code directly if you want(not recommended, hard to read):
norm! <80>kP
^----------<80> is 0x80
<80>kP
is raw code of <PageUp>
, you can enter it like this in normal mode:
"="<PageUp>"<cr>p
^----------press carriage return
If raw code of the key doesn't start with 0x80
, it's the same as terminal code (not sure), you can use the :h i_CTRL-V
to insert terminal code:
norm! <c-v><c-p>
^------------press ctrl-v ctrl-p
:h :exec
:h quote=
:h string
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "599"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fvi.stackexchange.com%2fquestions%2f20206%2fusing-a-special-key-in-function%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
First of all, you use the PageUp key in Normal mode so the underlying functionality is a Normal mode command. You can't use such commands directly while in an Ex command-line or function/script. You need to use the Ex command :norm
for this.
Further, to use "key codes" (:h key-codes
) of non-printing characters like <PageUp>
you need to construct the :norm
command as an expression and pass it to the :exe
command (see last paragraph of :h :norm
).
That gives us:
:exe "norm <PageUp>"
The double quotes are required as is the to escape the keycode and indicate that you want the special meaning not the literal string "<PageUp>".
(Note: Usually we want to use norm!
instead of norm
in order to avoid conflicts with mappings but that's not a critical element of this answer so omitted.)
add a comment |
First of all, you use the PageUp key in Normal mode so the underlying functionality is a Normal mode command. You can't use such commands directly while in an Ex command-line or function/script. You need to use the Ex command :norm
for this.
Further, to use "key codes" (:h key-codes
) of non-printing characters like <PageUp>
you need to construct the :norm
command as an expression and pass it to the :exe
command (see last paragraph of :h :norm
).
That gives us:
:exe "norm <PageUp>"
The double quotes are required as is the to escape the keycode and indicate that you want the special meaning not the literal string "<PageUp>".
(Note: Usually we want to use norm!
instead of norm
in order to avoid conflicts with mappings but that's not a critical element of this answer so omitted.)
add a comment |
First of all, you use the PageUp key in Normal mode so the underlying functionality is a Normal mode command. You can't use such commands directly while in an Ex command-line or function/script. You need to use the Ex command :norm
for this.
Further, to use "key codes" (:h key-codes
) of non-printing characters like <PageUp>
you need to construct the :norm
command as an expression and pass it to the :exe
command (see last paragraph of :h :norm
).
That gives us:
:exe "norm <PageUp>"
The double quotes are required as is the to escape the keycode and indicate that you want the special meaning not the literal string "<PageUp>".
(Note: Usually we want to use norm!
instead of norm
in order to avoid conflicts with mappings but that's not a critical element of this answer so omitted.)
First of all, you use the PageUp key in Normal mode so the underlying functionality is a Normal mode command. You can't use such commands directly while in an Ex command-line or function/script. You need to use the Ex command :norm
for this.
Further, to use "key codes" (:h key-codes
) of non-printing characters like <PageUp>
you need to construct the :norm
command as an expression and pass it to the :exe
command (see last paragraph of :h :norm
).
That gives us:
:exe "norm <PageUp>"
The double quotes are required as is the to escape the keycode and indicate that you want the special meaning not the literal string "<PageUp>".
(Note: Usually we want to use norm!
instead of norm
in order to avoid conflicts with mappings but that's not a critical element of this answer so omitted.)
edited 6 hours ago
answered 6 hours ago
B LayerB Layer
6,2421620
6,2421620
add a comment |
add a comment |
To send special key to :normal
, you need to get it's raw code by using "<key>"
notation.
exec "norm! <PageUp>"
You can also use raw code directly if you want(not recommended, hard to read):
norm! <80>kP
^----------<80> is 0x80
<80>kP
is raw code of <PageUp>
, you can enter it like this in normal mode:
"="<PageUp>"<cr>p
^----------press carriage return
If raw code of the key doesn't start with 0x80
, it's the same as terminal code (not sure), you can use the :h i_CTRL-V
to insert terminal code:
norm! <c-v><c-p>
^------------press ctrl-v ctrl-p
:h :exec
:h quote=
:h string
add a comment |
To send special key to :normal
, you need to get it's raw code by using "<key>"
notation.
exec "norm! <PageUp>"
You can also use raw code directly if you want(not recommended, hard to read):
norm! <80>kP
^----------<80> is 0x80
<80>kP
is raw code of <PageUp>
, you can enter it like this in normal mode:
"="<PageUp>"<cr>p
^----------press carriage return
If raw code of the key doesn't start with 0x80
, it's the same as terminal code (not sure), you can use the :h i_CTRL-V
to insert terminal code:
norm! <c-v><c-p>
^------------press ctrl-v ctrl-p
:h :exec
:h quote=
:h string
add a comment |
To send special key to :normal
, you need to get it's raw code by using "<key>"
notation.
exec "norm! <PageUp>"
You can also use raw code directly if you want(not recommended, hard to read):
norm! <80>kP
^----------<80> is 0x80
<80>kP
is raw code of <PageUp>
, you can enter it like this in normal mode:
"="<PageUp>"<cr>p
^----------press carriage return
If raw code of the key doesn't start with 0x80
, it's the same as terminal code (not sure), you can use the :h i_CTRL-V
to insert terminal code:
norm! <c-v><c-p>
^------------press ctrl-v ctrl-p
:h :exec
:h quote=
:h string
To send special key to :normal
, you need to get it's raw code by using "<key>"
notation.
exec "norm! <PageUp>"
You can also use raw code directly if you want(not recommended, hard to read):
norm! <80>kP
^----------<80> is 0x80
<80>kP
is raw code of <PageUp>
, you can enter it like this in normal mode:
"="<PageUp>"<cr>p
^----------press carriage return
If raw code of the key doesn't start with 0x80
, it's the same as terminal code (not sure), you can use the :h i_CTRL-V
to insert terminal code:
norm! <c-v><c-p>
^------------press ctrl-v ctrl-p
:h :exec
:h quote=
:h string
edited 2 hours ago
answered 6 hours ago
dedowsdidedowsdi
1,434411
1,434411
add a comment |
add a comment |
Thanks for contributing an answer to Vi and Vim Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fvi.stackexchange.com%2fquestions%2f20206%2fusing-a-special-key-in-function%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown