Vim statusline shows ^[[2;2R^[[>41;330;0c^[]10;rgb:e5e5/e5e5/e5e5^G^[]11;rgb:0000/0000/0000^G after mapping Capslock to Esc The 2019 Stack Overflow Developer Survey Results Are Inhow to assign another modifier to Alt key for X11?Vim mapping behaving strangelyVim command mappingMapping C-1 does not work in VIMVim - statusline and linksHow to use CapsLock instead of Escape in Vim?Vim: x-terminal key mappingChange colors of statusline in haskell-vim-nowmapping command key to esc in linuxvim: how can i make a mapping from a autocmd
Pristine Bit Checking
Why don't Unix/Linux systems traverse through directories until they find the required version of a linked library?
What could be the right powersource for 15 seconds lifespan disposable giant chainsaw?
How can I fix this gap between bookcases I made?
Why is it "Tumoren" and not "Tumore"?
Is it possible for the two major parties in the UK to form a coalition with each other instead of a much smaller party?
Why did Howard Stark use all the Vibranium they had on a prototype shield?
What is the meaning of Triage in Cybersec world?
Extreme, unacceptable situation and I can't attend work tomorrow morning
Output the Arecibo Message
Limit the amount of RAM Mathematica may access?
What is the motivation for a law requiring 2 parties to consent for recording a conversation
Does duplicating a spell with Wish count as casting that spell?
I looked up a future colleague on LinkedIn before I started a job. I told my colleague about it and he seemed surprised. Should I apologize?
I see my dog run
Is three citations per paragraph excessive for undergraduate research paper?
What is the use of option -o in the useradd command?
How to manage monthly salary
Spanish for "widget"
Which Sci-Fi work first showed weapon of galactic-scale mass destruction?
How to reverse every other sublist of a list?
How to create dashed lines/arrows in Illustrator
Inline version of a function returns different value than non-inline version
The difference between dialogue marks
Vim statusline shows ^[[2;2R^[[>41;330;0c^[]10;rgb:e5e5/e5e5/e5e5^G^[]11;rgb:0000/0000/0000^G after mapping Capslock to Esc
The 2019 Stack Overflow Developer Survey Results Are Inhow to assign another modifier to Alt key for X11?Vim mapping behaving strangelyVim command mappingMapping C-1 does not work in VIMVim - statusline and linksHow to use CapsLock instead of Escape in Vim?Vim: x-terminal key mappingChange colors of statusline in haskell-vim-nowmapping command key to esc in linuxvim: how can i make a mapping from a autocmd
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I added
au VimEnter * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Escape'
au VimLeave * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Caps_Lock'
to my .vimrc
to map Capslock to Escape. Since then, vim randomly shows the following statusline upon startup:
^[[2;2R^[[>41;330;0c^[]10;rgb:e5e5/e5e5/e5e5^G^[]11;rgb:0000/0000/0000^G
Not every time, but only sometimes. I couldn't find out, what triggers it.
Here is a screenshot:
vim keyboard-shortcuts xmodmap vimrc
add a comment |
I added
au VimEnter * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Escape'
au VimLeave * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Caps_Lock'
to my .vimrc
to map Capslock to Escape. Since then, vim randomly shows the following statusline upon startup:
^[[2;2R^[[>41;330;0c^[]10;rgb:e5e5/e5e5/e5e5^G^[]11;rgb:0000/0000/0000^G
Not every time, but only sometimes. I couldn't find out, what triggers it.
Here is a screenshot:
vim keyboard-shortcuts xmodmap vimrc
That's hard: the escapes shown are not related to the keyboard. If I encountered that in development, I'd build xterm with debug-traces and look for clues in the log.
– Thomas Dickey
Apr 6 at 12:32
Oh look! "powerline" again.
– JdeBP
Apr 6 at 17:26
@JdeBP What do you mean? :)
– finefoot
2 days ago
add a comment |
I added
au VimEnter * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Escape'
au VimLeave * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Caps_Lock'
to my .vimrc
to map Capslock to Escape. Since then, vim randomly shows the following statusline upon startup:
^[[2;2R^[[>41;330;0c^[]10;rgb:e5e5/e5e5/e5e5^G^[]11;rgb:0000/0000/0000^G
Not every time, but only sometimes. I couldn't find out, what triggers it.
Here is a screenshot:
vim keyboard-shortcuts xmodmap vimrc
I added
au VimEnter * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Escape'
au VimLeave * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Caps_Lock'
to my .vimrc
to map Capslock to Escape. Since then, vim randomly shows the following statusline upon startup:
^[[2;2R^[[>41;330;0c^[]10;rgb:e5e5/e5e5/e5e5^G^[]11;rgb:0000/0000/0000^G
Not every time, but only sometimes. I couldn't find out, what triggers it.
Here is a screenshot:
vim keyboard-shortcuts xmodmap vimrc
vim keyboard-shortcuts xmodmap vimrc
asked Apr 6 at 12:01
finefootfinefoot
384111
384111
That's hard: the escapes shown are not related to the keyboard. If I encountered that in development, I'd build xterm with debug-traces and look for clues in the log.
– Thomas Dickey
Apr 6 at 12:32
Oh look! "powerline" again.
– JdeBP
Apr 6 at 17:26
@JdeBP What do you mean? :)
– finefoot
2 days ago
add a comment |
That's hard: the escapes shown are not related to the keyboard. If I encountered that in development, I'd build xterm with debug-traces and look for clues in the log.
– Thomas Dickey
Apr 6 at 12:32
Oh look! "powerline" again.
– JdeBP
Apr 6 at 17:26
@JdeBP What do you mean? :)
– finefoot
2 days ago
That's hard: the escapes shown are not related to the keyboard. If I encountered that in development, I'd build xterm with debug-traces and look for clues in the log.
– Thomas Dickey
Apr 6 at 12:32
That's hard: the escapes shown are not related to the keyboard. If I encountered that in development, I'd build xterm with debug-traces and look for clues in the log.
– Thomas Dickey
Apr 6 at 12:32
Oh look! "powerline" again.
– JdeBP
Apr 6 at 17:26
Oh look! "powerline" again.
– JdeBP
Apr 6 at 17:26
@JdeBP What do you mean? :)
– finefoot
2 days ago
@JdeBP What do you mean? :)
– finefoot
2 days ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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%2funix.stackexchange.com%2fquestions%2f510895%2fvim-statusline-shows-22r413300c10rgbe5e5-e5e5-e5e5g11rgb000%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux 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%2funix.stackexchange.com%2fquestions%2f510895%2fvim-statusline-shows-22r413300c10rgbe5e5-e5e5-e5e5g11rgb000%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
That's hard: the escapes shown are not related to the keyboard. If I encountered that in development, I'd build xterm with debug-traces and look for clues in the log.
– Thomas Dickey
Apr 6 at 12:32
Oh look! "powerline" again.
– JdeBP
Apr 6 at 17:26
@JdeBP What do you mean? :)
– finefoot
2 days ago