-
Notifications
You must be signed in to change notification settings - Fork 358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add conceal to double and tripple equal #1155
base: master
Are you sure you want to change the base?
Conversation
* Add changes to `README.md`
700739a
to
c97a1a3
Compare
@amadeus I think this is ready to check. ( : Can you check this up, or can you tell me who else can approve/check this ? 👋 |
@@ -231,7 +233,7 @@ if exists("javascript_plugin_flow") | |||
endif | |||
|
|||
syntax cluster jsExpression contains=jsBracket,jsParen,jsObject,jsTernaryIf,jsTaggedTemplate,jsTemplateString,jsString,jsRegexpString,jsNumber,jsFloat,jsOperator,jsOperatorKeyword,jsBooleanTrue,jsBooleanFalse,jsNull,jsFunction,jsArrowFunction,jsGlobalObjects,jsExceptions,jsFutureKeys,jsDomErrNo,jsDomNodeConsts,jsHtmlEvents,jsFuncCall,jsUndefined,jsNan,jsPrototype,jsBuiltins,jsNoise,jsClassDefinition,jsArrowFunction,jsArrowFuncArgs,jsParensError,jsComment,jsArguments,jsThis,jsSuper,jsDo,jsForAwait,jsAsyncKeyword,jsStatement,jsDot | |||
syntax cluster jsAll contains=@jsExpression,jsStorageClass,jsConditional,jsRepeat,jsReturn,jsException,jsTry,jsNoise,jsBlockLabel | |||
syntax cluster jsAll contains=@jsExpression,jsStorageClass,jsConditional,jsRepeat,jsReturn,jsException,jsTry,jsNoise,jsBlockLabel,jsDoubleEqual,jsTripleEqual |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should actually be added to jsExpression
above, not all
README.md update also please 🙏 |
any movement on this PR? |
let g:javascript_conceal_function = "ƒ" | ||
let g:javascript_conceal_null = "ø" | ||
let g:javascript_conceal_this = "@" | ||
let g:javascript_conceal_return = "⇚" | ||
let g:javascript_conceal_undefined = "¿" | ||
let g:javascript_conceal_NaN = "ℕ" | ||
let g:javascript_conceal_prototype = "¶" | ||
let g:javascript_conceal_static = "•" | ||
let g:javascript_conceal_super = "Ω" | ||
let g:javascript_conceal_arrow_function = "⇒" | ||
let g:javascript_conceal_noarg_arrow_function = "🞅" | ||
let g:javascript_conceal_function = "ƒ" | ||
let g:javascript_conceal_null = "ø" | ||
let g:javascript_conceal_this = "@" | ||
let g:javascript_conceal_return = "⇚" | ||
let g:javascript_conceal_undefined = "¿" | ||
let g:javascript_conceal_NaN = "ℕ" | ||
let g:javascript_conceal_prototype = "¶" | ||
let g:javascript_conceal_static = "•" | ||
let g:javascript_conceal_super = "Ω" | ||
let g:javascript_conceal_arrow_function = "⇒" | ||
let g:javascript_conceal_noarg_arrow_function = "🞅" | ||
let g:javascript_conceal_underscore_arrow_function = "🞅" | ||
let g:javascript_conceal_double_equal = "≈" | ||
let g:javascript_conceal_triple_equal = "≡" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @bradwood , which part of the README.md needs to be updated ?
Also there was some changes I requested that would need to happen before this can get merged |
Fixes: #1154
Example code
Not the best code example I guess but here you go... 😅
With
conceal
Anyone feel free to point my 🚢 to the right direction 😬