Kem Tekinay

Results 4 issues of Kem Tekinay

For example, in Xojo there are keywords that start with "#" (#pragma, #endif, etc.). Autocomplete will not trigger on these. A solution is to scan the first character of every...

Suppose you have a document with these lines ``` 1 2 3 ``` None are marked dirty so you change the middle line to "2.5". Now it is marked as...

Here are my settings: ``` "highlight.regexes": { // "(@spec\\b.*)": { "regexFlags": "g", "filterFileRegex": ".*\\.exs?", "decorations": [ { "backgroundColor": "#f4ebf3", "fontWeight": "bold", } ] }, }, ``` While this works, it...

This code, as given in the doc example, works but generates a dialyzer warning about breaking the contract: ``` Workbook.append_sheet(%Workbook{}, Sheet.with_name("blah")) ``` This does not: ``` bogus_sheet = Sheet.with_name("Unused") Workbook.append_sheet(%Workbook{sheets:...