remove white box html tag trackers in VScode - visual-studio-code

how do I remove or disable the white box that tracks tag signs "<" and ">" ??

add this to your user settings:
"[html]": {
"editor.matchBrackets": false
}

Related

vscode double click highlights word and sentence

Whenever I double click a word in vscode it gets highlighted and selected, as it should. But something else happens sometimes: the whole sentence gets highlighted. Is there a way for me to easily select the whole highlighted sentence?
In the picture I double clicked the word "test", as you can see it is highlighted in a different color, but the whole sentence is also highlighted. Only the word "test" is selected.
(this is in a javascript file but it probably does the same in other formats)
You can use the extension Select By
"selectby.regexes": {
"SelectSentence": {
"backward": "'",
"forward": "'",
"forwardInclude": false,
"backwardInclude": false
}
}
You can use the command palette command: Select text range based on regex and select SelectSentence from the list
Or setup a keybinding
{
"key": "ctrl+shift+alt+f9", // or any other key combo
"when": "editorTextFocus",
"command": "selectby.regex",
"args": ["SelectSentence"]
}

input looses autocapitalize after setFocus() ionic 4

I have a ion-textarea in my ionic4 project which should default capitalizes the first letter (The shift-arrow on the iOS keyboard is solid).
#ViewChild('focusInput', { static: false }) myInput;
ionViewWillEnter() {
setTimeout(() => {
this.myInput.setFocus();
this.nativeKeyboard.show();
}, 1300);
}
this code set focus in text area but the shift-key is not longer solid and the first letter is not automatically uppercased. How do I force the first letter to be automatically uppercased?
I've tried using autocapitalize='sentences' (and the other values) on the ion-textarea but no luck.
It was a mistake. autocapitalize defaults to "off" on ion-textarea, so it needs to enable it in order to get the default capitalization to work.
I should have used autocapitalize='true' insted of autocapitalize='sentences'

vscode plugin change icon in problems window

I am making a vs code plugin for the output in problems pane at the bottom of the editor.
I get the message set by diagnostics.push(). But I want to change the icon that is displayed next to it. It's a cross in a red circle by default. Is there any way I can do it?
diagnostics.push({
severity: DiagnosticSeverity.Information,
range: {
start: { line: message.line, character: 0 },
end: { line: message.line , character: 10 }
},
message: `${message.message}`,
source: 'My source',
});
The icon is controlled by the severity of the diagnostic:
DiagnosticSeverity.Error
DiagnosticSeverity.Warning
DiagnosticSeverity.Information
DiagnosticSeverity.Hint
I don't think extensions can currently contribute a different icon.

Make checkbox input 1 or 0 into form in acrobat

I need to be able to make a checkbox in a form in Acrobat return a 0 if checked and a 1 if not check into another text box or form in acrobat.
Checkbox on tick will return NULL or "" and on unchecking it will return "Off" in Acrobat so you can right javascript as
if(this.getField("Checkboxid").value!="Off")
{
this.getField("textboxid").value=1
}
else
{
this.getField("textboxid").value=0
}
we can right this javascript on checkbox "Mouse Up" event.

How to display special characters in Imperavi Redactor?

I'd like to find an easy way to insert special characters in Imperavi's redactor.
In Windows, users can insert a Greek letter such as ß with the keyboard shortcut Alt+225.
But is there a way to have a more user-friendly feature in Redactor to insert such characters, perhaps through a dedicated menu?
Finally found a way with a custom dropdown button :
buttonsCustom: {
greek: {
title: 'Special Characters',
dropdown: {
alpha: {title: 'α',callback: function(obj){obj.insertHtml('α');}},
beta: {title: 'β',callback: function(obj){obj.insertHtml('β');}}
}
}
}