texts on the highlighted line is hidden when ^n in vim on ssh
up vote
0
down vote
favorite
as you can see in the included picture, unlike in the ubuntu terminal above,
texts on highlighted line is hidden by the black bar on ssh. I'm using windows 10 remote terminal app. any suggestions would be appreciated.
vim ssh
add a comment |
up vote
0
down vote
favorite
as you can see in the included picture, unlike in the ubuntu terminal above,
texts on highlighted line is hidden by the black bar on ssh. I'm using windows 10 remote terminal app. any suggestions would be appreciated.
vim ssh
I'm voting to close this question as off-topic because it should be migrated to vi.stackexchange.com
– Jens
Nov 11 at 13:38
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
as you can see in the included picture, unlike in the ubuntu terminal above,
texts on highlighted line is hidden by the black bar on ssh. I'm using windows 10 remote terminal app. any suggestions would be appreciated.
vim ssh
as you can see in the included picture, unlike in the ubuntu terminal above,
texts on highlighted line is hidden by the black bar on ssh. I'm using windows 10 remote terminal app. any suggestions would be appreciated.
vim ssh
vim ssh
asked Nov 11 at 10:49
Woori
135
135
I'm voting to close this question as off-topic because it should be migrated to vi.stackexchange.com
– Jens
Nov 11 at 13:38
add a comment |
I'm voting to close this question as off-topic because it should be migrated to vi.stackexchange.com
– Jens
Nov 11 at 13:38
I'm voting to close this question as off-topic because it should be migrated to vi.stackexchange.com
– Jens
Nov 11 at 13:38
I'm voting to close this question as off-topic because it should be migrated to vi.stackexchange.com
– Jens
Nov 11 at 13:38
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
It looks like your SSH session has fewer colors available (probably just 16 or even 8; you can check with :set t_Co?
inside Vim), and therefore the low contrast popup menu selection highlighting (which I would want to fix even on Ubuntu terminal; see below) becomes a no contrast selection (black on black). To fix this:
- Check whether your Windows 10 remote terminal app actually supports more colors (I think it should allow at least 256 different colors), and tweak the
TERM
environment variable before starting Vim (e.g. by changingxterm
toxterm-256color
). - Switch to a different
:colorscheme
; Vim ships with several, and many more can be found at vim.org or on the Internet. - Keep the colorscheme (if you like it in general), but tweak this particular highlight group (
:help hl-PmenuSel
). Put the corresponding:highlight PmenuSel ...
command after the :colorscheme command in your~/.vimrc
.
:highlight Pmenu ctermbg=blue guibg=blue :highlight PmenuSel ctermbg=yellow guibg=yellow :highlight PmenuSbar ctermbg=green guibg=green :highlight PmenuThumb ctermbg=snow guibg=snow with this commands I fixed the issue. thank you so much.
– Woori
Nov 12 at 11:37
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
It looks like your SSH session has fewer colors available (probably just 16 or even 8; you can check with :set t_Co?
inside Vim), and therefore the low contrast popup menu selection highlighting (which I would want to fix even on Ubuntu terminal; see below) becomes a no contrast selection (black on black). To fix this:
- Check whether your Windows 10 remote terminal app actually supports more colors (I think it should allow at least 256 different colors), and tweak the
TERM
environment variable before starting Vim (e.g. by changingxterm
toxterm-256color
). - Switch to a different
:colorscheme
; Vim ships with several, and many more can be found at vim.org or on the Internet. - Keep the colorscheme (if you like it in general), but tweak this particular highlight group (
:help hl-PmenuSel
). Put the corresponding:highlight PmenuSel ...
command after the :colorscheme command in your~/.vimrc
.
:highlight Pmenu ctermbg=blue guibg=blue :highlight PmenuSel ctermbg=yellow guibg=yellow :highlight PmenuSbar ctermbg=green guibg=green :highlight PmenuThumb ctermbg=snow guibg=snow with this commands I fixed the issue. thank you so much.
– Woori
Nov 12 at 11:37
add a comment |
up vote
0
down vote
accepted
It looks like your SSH session has fewer colors available (probably just 16 or even 8; you can check with :set t_Co?
inside Vim), and therefore the low contrast popup menu selection highlighting (which I would want to fix even on Ubuntu terminal; see below) becomes a no contrast selection (black on black). To fix this:
- Check whether your Windows 10 remote terminal app actually supports more colors (I think it should allow at least 256 different colors), and tweak the
TERM
environment variable before starting Vim (e.g. by changingxterm
toxterm-256color
). - Switch to a different
:colorscheme
; Vim ships with several, and many more can be found at vim.org or on the Internet. - Keep the colorscheme (if you like it in general), but tweak this particular highlight group (
:help hl-PmenuSel
). Put the corresponding:highlight PmenuSel ...
command after the :colorscheme command in your~/.vimrc
.
:highlight Pmenu ctermbg=blue guibg=blue :highlight PmenuSel ctermbg=yellow guibg=yellow :highlight PmenuSbar ctermbg=green guibg=green :highlight PmenuThumb ctermbg=snow guibg=snow with this commands I fixed the issue. thank you so much.
– Woori
Nov 12 at 11:37
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
It looks like your SSH session has fewer colors available (probably just 16 or even 8; you can check with :set t_Co?
inside Vim), and therefore the low contrast popup menu selection highlighting (which I would want to fix even on Ubuntu terminal; see below) becomes a no contrast selection (black on black). To fix this:
- Check whether your Windows 10 remote terminal app actually supports more colors (I think it should allow at least 256 different colors), and tweak the
TERM
environment variable before starting Vim (e.g. by changingxterm
toxterm-256color
). - Switch to a different
:colorscheme
; Vim ships with several, and many more can be found at vim.org or on the Internet. - Keep the colorscheme (if you like it in general), but tweak this particular highlight group (
:help hl-PmenuSel
). Put the corresponding:highlight PmenuSel ...
command after the :colorscheme command in your~/.vimrc
.
It looks like your SSH session has fewer colors available (probably just 16 or even 8; you can check with :set t_Co?
inside Vim), and therefore the low contrast popup menu selection highlighting (which I would want to fix even on Ubuntu terminal; see below) becomes a no contrast selection (black on black). To fix this:
- Check whether your Windows 10 remote terminal app actually supports more colors (I think it should allow at least 256 different colors), and tweak the
TERM
environment variable before starting Vim (e.g. by changingxterm
toxterm-256color
). - Switch to a different
:colorscheme
; Vim ships with several, and many more can be found at vim.org or on the Internet. - Keep the colorscheme (if you like it in general), but tweak this particular highlight group (
:help hl-PmenuSel
). Put the corresponding:highlight PmenuSel ...
command after the :colorscheme command in your~/.vimrc
.
answered Nov 12 at 8:07
Ingo Karkat
129k14141193
129k14141193
:highlight Pmenu ctermbg=blue guibg=blue :highlight PmenuSel ctermbg=yellow guibg=yellow :highlight PmenuSbar ctermbg=green guibg=green :highlight PmenuThumb ctermbg=snow guibg=snow with this commands I fixed the issue. thank you so much.
– Woori
Nov 12 at 11:37
add a comment |
:highlight Pmenu ctermbg=blue guibg=blue :highlight PmenuSel ctermbg=yellow guibg=yellow :highlight PmenuSbar ctermbg=green guibg=green :highlight PmenuThumb ctermbg=snow guibg=snow with this commands I fixed the issue. thank you so much.
– Woori
Nov 12 at 11:37
:highlight Pmenu ctermbg=blue guibg=blue :highlight PmenuSel ctermbg=yellow guibg=yellow :highlight PmenuSbar ctermbg=green guibg=green :highlight PmenuThumb ctermbg=snow guibg=snow with this commands I fixed the issue. thank you so much.
– Woori
Nov 12 at 11:37
:highlight Pmenu ctermbg=blue guibg=blue :highlight PmenuSel ctermbg=yellow guibg=yellow :highlight PmenuSbar ctermbg=green guibg=green :highlight PmenuThumb ctermbg=snow guibg=snow with this commands I fixed the issue. thank you so much.
– Woori
Nov 12 at 11:37
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2fstackoverflow.com%2fquestions%2f53247984%2ftexts-on-the-highlighted-line-is-hidden-when-n-in-vim-on-ssh%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
I'm voting to close this question as off-topic because it should be migrated to vi.stackexchange.com
– Jens
Nov 11 at 13:38