texts on the highlighted line is hidden when ^n in vim on ssh











up vote
0
down vote

favorite












enter image description here



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.










share|improve this question






















  • 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















up vote
0
down vote

favorite












enter image description here



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.










share|improve this question






















  • 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













up vote
0
down vote

favorite









up vote
0
down vote

favorite











enter image description here



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.










share|improve this question













enter image description here



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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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


















  • 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












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 changing xterm to xterm-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.






share|improve this answer





















  • :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













Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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
});


}
});














draft saved

draft discarded


















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

























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 changing xterm to xterm-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.






share|improve this answer





















  • :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

















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 changing xterm to xterm-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.






share|improve this answer





















  • :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















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 changing xterm to xterm-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.






share|improve this answer












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 changing xterm to xterm-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.







share|improve this answer












share|improve this answer



share|improve this answer










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




















  • :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




















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python