Putter

Results 7 comments of Putter

![image](https://user-images.githubusercontent.com/45805601/104133993-a196c580-53b9-11eb-81e4-be6749c9ed88.png) Composer 1.6.3 is the oldest I can rollback to and it doesn't seem to work

This may be a similar issue For me: ``` noremap j gj noremap k gk noremap H g^ noremap L g_ noremap J 5gj noremap K 5gk noremap W 4w...

@peteanning I switched to using map instead of noremap and that solved most of my issues. My remaps aren't too complex so recursion isn't a huge concern for me, something...

I believe I'm experiencing a similar issue although this is on a fresh docker install of Wallabag. I did a docker pull of the dockerhub image and ran `docker run...

Tested and works for me, although I wonder if `registerDomEvent` is the cleanest way of capturing keypresses. I've seen [advanced tables](https://github.com/tgrosinger/advanced-tables-obsidian) use [`registerEditorExtension`](https://github.com/tgrosinger/advanced-tables-obsidian/blob/main/src/main.ts#L55) for CM6 which might keep the behaviour...

It's not a plugin conflict, the issue is due to obsidian moving from CodeMirror 5 to 6 which breaks the function used to detect keypresses: ``` this.cmEditors = []; this.registerCodeMirror((cm)...

You have to run `npm run build` to rebuild from main.ts I think, main.js doesn't have the fix