Anyone using the code editor Nova App?

Anyone using the code editor Nova App out there ?

facing so much issue with VS Code that I am looking at giving it a try maybe

I used to use Sublime Text, but switched to VS Code and haven’t really had any issues with it once I got used to the differences in the key bindings and what not. I use these key bindings to make VS Code more similar to Sublime:

[
    {
        "key": "shift+alt+2",
        "command": "workbench.action.editorLayoutTwoColumns"
    },
    {
        "key": "shift+alt+d",
        "command": "workbench.view.debug"
    },
    {
        "key": "ctrl+shift+d",
        "command": "-workbench.view.debug"
    },
    {
        "key": "ctrl+shift+d",
        "command": "editor.action.copyLinesDownAction",
        "when": "editorTextFocus && !editorReadonly"
    },
    {
        "key": "shift+alt+down",
        "command": "-editor.action.copyLinesDownAction",
        "when": "editorTextFocus && !editorReadonly"
    },
    {
        "key": "alt+left",
        "command": "-workbench.action.navigateBack"
    },
    {
        "key": "alt+right",
        "command": "-workbench.action.navigateForward"
    },
    {
        "key": "alt+left",
        "command": "cursorWordPartLeft"
    },
    {
        "key": "alt+right",
        "command": "cursorWordPartRight"
    },
    {
        "key": "shift+alt+left",
        "command": "-editor.action.smartSelect.shrink",
        "when": "editorTextFocus"
    },
    {
        "key": "shift+alt+right",
        "command": "-editor.action.smartSelect.expand",
        "when": "editorTextFocus"
    },
    {
        "key": "shift+alt+left",
        "command": "cursorWordPartLeftSelect"
    },
    {
        "key": "shift+alt+right",
        "command": "cursorWordPartRightSelect"
    },
    {
        "key": "up",
        "command": "-selectPrevSuggestion",
        "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus || suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion"
    },
    {
        "key": "down",
        "command": "-selectNextSuggestion",
        "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus || suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion"
    }
]

nice! i have things similar setup on vs code as well,
I am also using cmd+i for the search function inside code text similar to Sublime Text if I recall well.
My fingers are used to that binding forever