midrare

Results 21 comments of midrare

Can I suggest having a callback on project close as well? This way we can do cleanup also.

My use case is a theme that actually does have buttons, but they're all buttons for recently-used files and recently-used sessions. On a fresh install of Neovim, there are no...

I found a workaround: use [bufferline.nvim](https://github.com/akinsho/bufferline.nvim) with [scope.nvim](https://github.com/tiagovla/scope.nvim). I'd still prefer a tabline-native solution though.

Rene is a mac user, and that's the default behavior on macOS: `cmd+backspace` deletes the entire line. He must not have changed the shortcut for Windows. He's disappeared for the...

No worries, in that case I'll just give you my personal keybinds with Windows keybinds included. Go into `src/sublimeless_zk.py` and find the method `def init_editor_text_shortcuts(self, editor)`. Replace the entire method...

This is a bug in `fontawesomefx`. The offending line is in [GlyphsFactory.java](https://bitbucket.org/Jerady/fontawesomefx/src/6cbf97484669c4ab79318a158e1dadf59363c85c/fontawesomefx/fontawesomefx-commons/src/main/java/de/jensd/fx/glyphs/GlyphsFactory.java#lines-62). Relevant issue [here](https://bitbucket.org/Jerady/fontawesomefx/issues/75/javalangnullpointerexception-cannot-invoke)

@XXiaoA Tested and working fine. Time for a pull request?

Hmm... what if I called `GenericStyledArea.getChildren().add(imagePreviewNodeHere)` and override `GenericStyledArea.layoutChildren()` to position it? Would there be any side effects to doing that?

Nope, this idea's a dud too. First, the `TextExt`s are updated in the view faster than the image preview nodes, so they appear to the user as lagging behind about...

I think I almost have a working hack, but there's a problem. The main idea is to simulate an editable text node by listening to mouse events in the custom...