Giter Site home page Giter Site logo

Comments (7)

magiblot avatar magiblot commented on August 21, 2024 1

Hi @unxed!

You are right, I hadn't considered this case.

Of course, Ctrl+X shall remain assigned to Cut. The whole point of Turbo is to make it user-friendly for people used to GUI editors. Taking this into account, the shortcut for Close should then be Ctrl+Q. We will have to find a new shortcut for Toggle Comment, though, which is currently assigned to Ctrl+Q.

from turbo.

magiblot avatar magiblot commented on August 21, 2024 1

I have added Ctrl+Q as a shortcut for Exit (Alt+X is still valid) and Toggle Comment is now assigned to Ctrl+E (like Geany). In addition, Toggle Comment can now also be triggered by Ctrl+_, which in most terminal emulators is mapped to Ctrl+/.

I might consider the other suggestions in the future.

from turbo.

JorisHansMeijer avatar JorisHansMeijer commented on August 21, 2024 1

Some related suggestion:
Many terminal applications use F10 as exit (example htop, midnight commander).
I would like to propose using F10 as exit for turbo as well.

from turbo.

unxed avatar unxed commented on August 21, 2024

Currently I am using this hack to be able to open menu on pressing something like Alt+F in non-Latin keyboard layouts. Not ideal, but you can use arrow keys to navigate after it at least. And at least Alt+non-latin-letter stops putting chars in editor after it.

diff --git a/source/platform/far2l.cpp b/source/platform/far2l.cpp
--- a/source/platform/far2l.cpp
+++ b/source/platform/far2l.cpp
@@ -78,6 +78,13 @@ ParseResult parseFar2lInput(GetChBuf &buf, TEvent &ev, InputState &state) noexce
             memcpy(&kev.dwControlKeyState, &out[6],  4);
             memcpy(&kev.uChar.UnicodeChar, &out[10], 4);
 
+            if ((kev.dwControlKeyState == 2) && (kev.uChar.UnicodeChar > 255)) {
+                // simulate "open menu" hotkey
+                // to get into menu then trying to use menu hotkey on non-latin kb layouts
+                kev.dwControlKeyState = 0;
+                kev.wVirtualKeyCode = VK_F12;
+            }
+
             if (uint16_t keyCode = virtualKeyCodeToKeyCode[kev.wVirtualKeyCode])
             {
                 kev.wVirtualScanCode = keyCode >> 8;

from turbo.

unxed avatar unxed commented on August 21, 2024

Also, what about switching from F12 to F9 as menu activation hot key? It's used by Norton Commander, Midnight Commander, Far Manager. Quite popular programs, so users do not have to relearn.

from turbo.

unxed avatar unxed commented on August 21, 2024

Another idea: pressing Ctrl+W with no open editor windows may mean "exit turbo".

from turbo.

unxed avatar unxed commented on August 21, 2024

About Alt+char hot keys not working in non-Latin layouts: found possible solution at least then working in far2l extensions mode. Needs to be implemented on both far2l and turbo sides. See elfmz/far2l#1562

from turbo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.