Alex Alabuzhev

Results 206 comments of Alex Alabuzhev

> 8. Press AltF1 again and change drive back to D:. A file system watcher FSWatcher is not recreated for D:\Test. Briefly: When you do this with normal plugins: -...

> Most importantly, it should *not* have any hardlinks any more. All the other hardlinks to the original file should be unaffected. This is a somewhat grey area. We do...

Alternatively, we probably can show a confirmation like "file exists and has hardlinks, what to do? break link / update all".

> найти способ определения является ли нажатая клавиша Dead key ```C++ bool IsDead = (MapVirtualKeyEx(Key, MAPVK_VK_TO_CHAR, Layout) & 0x80000000) != 0; ``` Unfortunately, you have to specify the layout, and...

> "хоть я и использую раскладку с AltGr, но в ней нет dead keys" So you're ok with the fact that core things like Alt+F1, Alt+F7, Alt+F9 etc. don't work...

With something like this ```DIFF diff --git a/far/console.cpp b/far/console.cpp index 3a500a548..8e93e508b 100644 --- a/far/console.cpp +++ b/far/console.cpp @@ -955,6 +955,16 @@ protected: } } + static void ungray_alt(span const Buffer, size_t...

> two set of changes The second change makes the first one redundant: if we eliminate LCtrlRAlt entirely, we will never enter that block, so no need to modify it....

@Danielma0203, "right click and delete" is not a recommended way to deal with bad paths: it delegates the work to a plugin that delegates it to the shell, which could...

Please check the latest available version.

> Windows OS had stored some weird FAR window sizes and applies now those settings on the app start Likely. Try removing/renaming HKCU\Console will all the subkeys, it will reset...