change color of VB variables in visual studio?












1















I'm looking to change the color of variables in my .vb files in the editor of visual studio. I've found this article which shows how to change colors in the editor but I can't find the element I need to change?



I've tried to search variable but there are only c++ variables and not those for .vb files.



Does anyone knows how to change the color of variables in the editor?










share|improve this question


















  • 2





    The VS highlighter uses a lexer, not a parser. A lexer can only identify lexical elements, like "identifier", "keyword", "literal", etc. A variable is an identifier, what type of identifier (variable, parameter, method, namespace, etc) requires a parser. The advantage of a lexer is that it is very fast and still works when the code is completely broken. It is always broken when you're busy editing. Users have created their own parser-based highlighter, have a look in the VS gallery. Might be tough shopping for vb.net

    – Hans Passant
    Nov 19 '18 at 11:01













  • stackoverflow.com/q/5574794/11683

    – GSerg
    Nov 19 '18 at 11:04











  • I believe the name in the VS Fonts and Colors menu for variables is "Identifier"

    – Lennart
    Nov 19 '18 at 11:21











  • @Lennart that changes all text (like functions and things like that) I basicly only want to change variable color. I'm trying to find a parser-based highlighter on the marketplace but so far have had no luck.

    – BRHSM
    Nov 19 '18 at 12:11
















1















I'm looking to change the color of variables in my .vb files in the editor of visual studio. I've found this article which shows how to change colors in the editor but I can't find the element I need to change?



I've tried to search variable but there are only c++ variables and not those for .vb files.



Does anyone knows how to change the color of variables in the editor?










share|improve this question


















  • 2





    The VS highlighter uses a lexer, not a parser. A lexer can only identify lexical elements, like "identifier", "keyword", "literal", etc. A variable is an identifier, what type of identifier (variable, parameter, method, namespace, etc) requires a parser. The advantage of a lexer is that it is very fast and still works when the code is completely broken. It is always broken when you're busy editing. Users have created their own parser-based highlighter, have a look in the VS gallery. Might be tough shopping for vb.net

    – Hans Passant
    Nov 19 '18 at 11:01













  • stackoverflow.com/q/5574794/11683

    – GSerg
    Nov 19 '18 at 11:04











  • I believe the name in the VS Fonts and Colors menu for variables is "Identifier"

    – Lennart
    Nov 19 '18 at 11:21











  • @Lennart that changes all text (like functions and things like that) I basicly only want to change variable color. I'm trying to find a parser-based highlighter on the marketplace but so far have had no luck.

    – BRHSM
    Nov 19 '18 at 12:11














1












1








1


1






I'm looking to change the color of variables in my .vb files in the editor of visual studio. I've found this article which shows how to change colors in the editor but I can't find the element I need to change?



I've tried to search variable but there are only c++ variables and not those for .vb files.



Does anyone knows how to change the color of variables in the editor?










share|improve this question














I'm looking to change the color of variables in my .vb files in the editor of visual studio. I've found this article which shows how to change colors in the editor but I can't find the element I need to change?



I've tried to search variable but there are only c++ variables and not those for .vb files.



Does anyone knows how to change the color of variables in the editor?







vb.net visual-studio






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 19 '18 at 10:52









BRHSMBRHSM

2822529




2822529








  • 2





    The VS highlighter uses a lexer, not a parser. A lexer can only identify lexical elements, like "identifier", "keyword", "literal", etc. A variable is an identifier, what type of identifier (variable, parameter, method, namespace, etc) requires a parser. The advantage of a lexer is that it is very fast and still works when the code is completely broken. It is always broken when you're busy editing. Users have created their own parser-based highlighter, have a look in the VS gallery. Might be tough shopping for vb.net

    – Hans Passant
    Nov 19 '18 at 11:01













  • stackoverflow.com/q/5574794/11683

    – GSerg
    Nov 19 '18 at 11:04











  • I believe the name in the VS Fonts and Colors menu for variables is "Identifier"

    – Lennart
    Nov 19 '18 at 11:21











  • @Lennart that changes all text (like functions and things like that) I basicly only want to change variable color. I'm trying to find a parser-based highlighter on the marketplace but so far have had no luck.

    – BRHSM
    Nov 19 '18 at 12:11














  • 2





    The VS highlighter uses a lexer, not a parser. A lexer can only identify lexical elements, like "identifier", "keyword", "literal", etc. A variable is an identifier, what type of identifier (variable, parameter, method, namespace, etc) requires a parser. The advantage of a lexer is that it is very fast and still works when the code is completely broken. It is always broken when you're busy editing. Users have created their own parser-based highlighter, have a look in the VS gallery. Might be tough shopping for vb.net

    – Hans Passant
    Nov 19 '18 at 11:01













  • stackoverflow.com/q/5574794/11683

    – GSerg
    Nov 19 '18 at 11:04











  • I believe the name in the VS Fonts and Colors menu for variables is "Identifier"

    – Lennart
    Nov 19 '18 at 11:21











  • @Lennart that changes all text (like functions and things like that) I basicly only want to change variable color. I'm trying to find a parser-based highlighter on the marketplace but so far have had no luck.

    – BRHSM
    Nov 19 '18 at 12:11








2




2





The VS highlighter uses a lexer, not a parser. A lexer can only identify lexical elements, like "identifier", "keyword", "literal", etc. A variable is an identifier, what type of identifier (variable, parameter, method, namespace, etc) requires a parser. The advantage of a lexer is that it is very fast and still works when the code is completely broken. It is always broken when you're busy editing. Users have created their own parser-based highlighter, have a look in the VS gallery. Might be tough shopping for vb.net

– Hans Passant
Nov 19 '18 at 11:01







The VS highlighter uses a lexer, not a parser. A lexer can only identify lexical elements, like "identifier", "keyword", "literal", etc. A variable is an identifier, what type of identifier (variable, parameter, method, namespace, etc) requires a parser. The advantage of a lexer is that it is very fast and still works when the code is completely broken. It is always broken when you're busy editing. Users have created their own parser-based highlighter, have a look in the VS gallery. Might be tough shopping for vb.net

– Hans Passant
Nov 19 '18 at 11:01















stackoverflow.com/q/5574794/11683

– GSerg
Nov 19 '18 at 11:04





stackoverflow.com/q/5574794/11683

– GSerg
Nov 19 '18 at 11:04













I believe the name in the VS Fonts and Colors menu for variables is "Identifier"

– Lennart
Nov 19 '18 at 11:21





I believe the name in the VS Fonts and Colors menu for variables is "Identifier"

– Lennart
Nov 19 '18 at 11:21













@Lennart that changes all text (like functions and things like that) I basicly only want to change variable color. I'm trying to find a parser-based highlighter on the marketplace but so far have had no luck.

– BRHSM
Nov 19 '18 at 12:11





@Lennart that changes all text (like functions and things like that) I basicly only want to change variable color. I'm trying to find a parser-based highlighter on the marketplace but so far have had no luck.

– BRHSM
Nov 19 '18 at 12:11












0






active

oldest

votes











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',
autoActivateHeartbeat: false,
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%2f53373048%2fchange-color-of-vb-variables-in-visual-studio%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
















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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373048%2fchange-color-of-vb-variables-in-visual-studio%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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini