superle3

Results 99 comments of superle3

```js export function getVimSpecialEnterCommand(settings: LatexSuitePluginSettings): vimCommand { return { id: "latex-suite-vim-special-enter", defineType: "defineAction", type: "action", action: (cm: CodeMirrorEditor) => { //@ts-ignore const vimObj: Vim | null = window?.CodeMirrorAdapter?.Vim; if (!vimObj)...

```ts export function getVimSpecialEnterCommand(settings: LatexSuitePluginSettings, plugin: LatexSuitePlugin): vimCommand { return { id: "latex-suite-vim-special-enter", defineType: "defineAction", type: "action", action: (cm: CodeMirrorEditor) => { //@ts-ignore const vimObj: Vim | null = window?.CodeMirrorAdapter?.Vim;...

You mean https://github.com/RyotaUshio/obsidian-mathjax-preamble-manager this right, cause I am getting an 404. I propose keeping the same format of `conceal_maps.ts` and just import those variables if they exist. That would give...

Oh i read the proposal wrong. Still want the format ```ts export const cmd_symbols = {} export const operators = [] export const fractions = {} ``` but you can...

duplicates have been made at https://github.com/artisticat1/obsidian-latex-suite/issues/287, https://github.com/artisticat1/obsidian-latex-suite/issues/242, https://github.com/artisticat1/obsidian-latex-suite/issues/124, but since they are not active lets continue here. Also there is something wrong with the mapping. At https://github.com/artisticat1/obsidian-latex-suite/pull/386 `\Subset` doesn't get...

This could be an issue of the vim plugin itself, but that isn't really a solution. I tried to just update the cursors position in the update, but you can't...

I think I found a fix and the issue is definitely with the vim extension. It still runs mostly on CM5 and not CM6. Conceal/ decorations doesn't even work with...

Hi, From the readme > Pressing Tab while the cursor is at the end of an equation will move the cursor outside the $ symbols. It's a feature not a...

Hi, (this is not a bug, but a feature request) Its possible with and without negative lookbehind, depends on your needs and also I am not sure of the consequences...

> it seems like whitespace at the end of snippet replacements are trimmed That's a setting you can turn off in the advanced settings. It's on, otherwise some snippets would...