Блог пользователя Hernan

Автор Hernan, 14 лет назад, По-английски
logo

Many people ask for the best IDE for programming contests where you don't need all the features than eclipse, Netbeans or VS has, there are many simple editors but only a few editors are really worth using.

Far Manager is a great tool for training in programming comptetitions because you can add lots of plugins avalible for it and extend the power like acced to ftp server, open compressed files, syntax highlighting, etc..

Far Manager has an simple editor than you can use for write source code and test data for a problem, you can also manage your files, preview text files and execute system commands to call compilers.



What is Far Manager?

The oficial site says:

" Far Manager is a program for managing files and archives in Windows operating systems. "

Download

You can download Far Manager here, i strongly recommend download the latest nightly build in archive mode.
After download is finished uncompress the .7z file in a folder called Far then run far.exe.

screenshoot

Far Manager Main Screen


The Basics

Read the problem statement of Theatre Square, i use the solutions of t__nt in C++ for explain the basics of Far Manager.

1: #include <cstdio>
2:
3: int n, m, a;
4:
5: int main() {
6: scanf("%d%d%d", &n, &m, &a);
7: printf("%lld\n", ((n + a - 1LL) / a) * ((m + a - 1LL) / a));
8: return 0;
9: }

The main screen contains two panels and the command line, you can rename, delete, create and view files or folders also copy or move files or folders between panels.

In the command line using the plugin farcmds you can call system commands like type echo and others.

screenshoot

Panels and Command Line

Make a folder called codeforces where you will put your source code pressing F7.

screenshoot

Making a folder


Type cd codeforces the press Shift + F4 for create a new file: theatre.cpp

screenshoot

Create a File


Now you can type the source code and save pressing F2.

screenshoot

Editor

Close the file pressing F10.
For compile the source code, assuming g++ is in the Path, type far:view <g++ -o theatre.exe theatre.cpp and you'll see the compiler messages, quit with F10 too.
Now create your input file theatre.in with the next content:

6 6 4

the solution for this test case is 4.

Run your program typing far:view <theatre <theatre.in

Syntax Highlighting

Colorer is a plugin for Far Manager than allow you highlight the source code for many languages, you can download here and uncompress into the Plugins folder.
After restart far you can view:


screenshoot

Editor with Colorer

Notes

You can use Far Manager in Linux if you have wine installed.
  • Проголосовать: нравится
  • +10
  • Проголосовать: не нравится

14 лет назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится
First of all I need to note, that most of Russian best teams of 2008 during Petrozavodsk training camp were using Far as their primary IDE. E.g.  SpbSU Burunduchki, or Orel STU with Dmitriy Zhukov and many others. Petr, as I remember, was using other IDE, but still was using Far to organize his source files during the competitions.

There are several interesting features which are not covered in the post.

Typing each time "g++ bla.cpp" is kind of annoying (even though linux-guys like doing so)
Moreover, if you use Visual C++ compiler, which is more common case for Windows user, path to cl is not even in PATH.

There's a very nice workaround - press F9, in the menu appeared choose Commands->File Associations, press Ins, then for mask enter "*.cpp", for description something reasonable, line "C++ Source File" and for execute command something like
g++ !.!
or, if you use visual studio,
C:\"Program Files"\"Microsoft Visual Studio 10.0"\VC\vcvarsall.bat && C:\"Program Files"\"Microsoft Visual Studio 10.0"\VC\bin\cl.exe !.! && del !.obj
(don't forget to change path to visual studio)

Also, for java you can create associations for java compiler (extension: *.java, command: javac !.!) and java classes (extension: *.class, command: java !). For python (extension *.py, command: python !.!)
For C#
C:\Windows\Microsoft.NET\Framework\v4.0.30128\csc.exe /o !.!
(don't forget to change path to .NET framework)

After that you can compile source file by just pressing enter on them, which in most cases grant you higher productivity than any other IDE, as Far behaves much faster, and allows you to switch between different source files or between source file and input or between source file and output faster.
  • 14 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    Решил попробовать. Напрягает одна вещь - каждый раз когда я жму энтер курсор ввода перемещается на начало следующей строки и нужные отступы приходится делать вручную. Можно ли сделать так, чтобы фар сам выставлял отступы?
  • 2 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    sorry, I followed the instructions, but I have to type "far:view <g++ -o theater.exe theater.cpp" to compile

14 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

Yeah, Far is a very powerful IDE. But to my mind it is useful only in olympiads and tiny projects. Using a debugger with Far is not a trivial task. Thus to debug a program one can use only console output and code reading. This forces you to search bugs not by tracing the program but by careful reading one line after another.

Being able to find bugs while reading the code is very useful in ACM-like contests. A computer is a bottleneck so it's better to use it for writing solutions than for searching bugs.

  • 14 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Our team solved this problem.

    At the beginning we created a project in Visual Studio called "template" with one file: solution.cpp

    When we are going to solve problem X, we just copy "template" project into X directory and start to write code in solution.cpp file. If anything goes wrong, we just press Enter at the template.vcproj file and Visual Studio opens, ready to debug our code, written in Far.

  • 14 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    When I use far as IDE for olympiads, i used gdb as debugger.
14 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
Thank you for this useful article. I didn't know about far:view feature even though I have been using FAR for 1 year. However, all these far:view, far:edit and other commands don't work when you set "Execute command " in "File association" menu. Do you know any workaround for this issue?
14 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
Лучше только vim.
  • 14 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    [holywar_mode] Emacs еще лучше [/holywar_mode]
    • 12 лет назад, # ^ |
        Проголосовать: нравится +5 Проголосовать: не нравится
      не хотите написать как настраивать ето дело под линуксом ?
14 лет назад, # |
  Проголосовать: нравится -15 Проголосовать: не нравится

What is  [b][url=http://www.replica-watch-sale.com/]Breitling[/url][/b]?  Do you know  [b][url=http://www.replica-watch-sale.com/]Breitling Watches[/url][/b]?  Buy these  [b][url=http://www.replica-watch-sale.com/]Breitling Watches sale[/url][/b]  on line.More  [b][url=http://www.replica-watch-sale.com/]cheap Breitling Watches[/url][/b]  for sale!  岩姐测试!如有雷同,纯属巧合!

What is  <a href=http://www.replica-watch-sale.com/>Breitling</a>?  Do you know  <a href=http://www.replica-watch-sale.com/>Breitling Watches</a>?  Buy these  <a href=http://www.replica-watch-sale.com/>Breitling Watches sale</a>  on line.More  <a href=http://www.replica-watch-sale.com/>cheap Breitling Watches</a>  for sale!  岩姐测试!如有雷同,纯属巧合!

  • 14 лет назад, # ^ |
      Проголосовать: нравится +2 Проголосовать: не нравится
    Поздравляю Codeforces с первым спамером
    • 14 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится
      заблудился бедненький :D
      • 14 лет назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        Это свидетельствует о росте популярности ресурса))

        Скоро при регистрации будут писать обход в ширину, наверное))

        • 14 лет назад, # ^ |
            Проголосовать: нравится +1 Проголосовать: не нравится
          Кстати да! Идея уже поднималась при регистрации "заставить" пользователя решить какую-то задачку))
          Видимо пришла пора это сделать!)
14 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
For GNU/Linux a similar tool is Midnight Commander.
  • 13 лет назад, # ^ |
      Проголосовать: нравится +4 Проголосовать: не нравится
    Midnight is awful for editing files! Of course, as a commander it seems to be a good alternative to far manager, but did you try to code your problems in it? Pressing escape twice to exit the file; strange chars when opened in Windows...
    • 12 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится
      Pressing escape twice to  exit the file
      It's customizable;
      strange chars when opened in Windows
      Looks like you're using a bad editor in Windows. In Unix-like systems there is only one byte for line break, unlike Windows with two bytes. So when such files are opened in Notepad, they look strange, but in normal editors everything is OK ;)
  • 13 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    I agree with mak_kbtu. MC had a lot of small imperfections comparing with Far, or may be it's just matter of your habits.
    But it's hard to me write or navigate in MC, so I still using vim+bash+kate under linux :)

    • 10 лет назад, # ^ |
      Rev. 2   Проголосовать: нравится +6 Проголосовать: не нравится

      vim + Kate? How does that work together? :D

      • 10 лет назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        Kate is a main editor (for code, samples, etc) and vim is used when I need to create or fix some file which is not opened in Kate (or if I don't want to switch windows). Another usecase is to open very big file (editors usually fail with this one).

13 лет назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится
How do I see contents of STL collections in debug mode in this super IDE ?
13 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
vim решает =)
13 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
Can I create a template for some file extensions? For ex: if I will create "problem.cpp", there will be prepared code: "#include<...> using namespace std ....".
13 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
Thank you very much)
13 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

А есть ли версия FAR или плагин с поддержкой Redo?

Если нет, то как без столь нужной вещи обходятся те, кто используют FAR на контестах?

  • 13 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    Ctrl+Shift+Z.
    • 13 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      спасибо, работает!

      видать докрутили фичу, т.к. раньше не было, а ленивый гуглинг натыкался ток на просьбы сделать.

13 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
To the point, did you get Far Manager to work under Linux? When I installed it under wine, the plugins work rather well, but I couldn't run far and compilation commands. If you or someone managed to cope with this problem, please, share!
12 лет назад, # |
  Проголосовать: нравится -28 Проголосовать: не нравится
Это полное УГ!
  • 12 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    Многим нравится. В этом есть некоторые плюсы, как например отказ от дебагинга, который заставляет писать код более внимательно, ибо потом у тебя не будет возможности в дебагере стопануть задачу и смотреть на содержиное стека вызовов, на содержимое переменных и прочее. Дисциплинизирует такой изврат, сам практиковал. Самое страшное что я видел до сих пор, это vim со сброшенными настройками, я там ваще нифига сделать не могу. Я юзаю vim, но файлик настроек украл у товарища.
    • 12 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится
      Я поставил на фар плагин, позволяющий прикрутить туда отладчик ;)
      • 12 лет назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится
        Можете написать название плагина?
        P.S. и ссылку, если не трудно.
12 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Я не очень понимаю английский, поэтому можете поподробнее объяснить как компилировать исходники на c++ с помощью g++. Точнее, что именно написать в командной строке, т.к. у меня выдает, что g++ не является командой.

  • 12 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    g++ должен быть установлен.
    Если после этого не удается, нужно добавить его в переменную окружения PATH или писать полный путь типа c:\...\g++.exe
    • 12 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится
      Он установлен вместе с dev-cpp, можно ли его как-то взять оттуда или же надо ставить отдельно. И еще вопрос: можете расписать подробно про добавление g++ в переменную PATH? ( Просто я никогда раньше им не пользовался, поэтому не знаю абсолютно ничего)
      • 12 лет назад, # ^ |
        Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

        Можно по другому. Создаёшь батник в папке с твоим решением (.bat) и в нём пишешь  :

        "Путь к g++.exe " имя_твоего_решения.сpp
        Пример :
        "C:\mingw\bin\g++.exe" solution.cpp
        После этого просто запускаешь батник и смотриш результат компиляции Ctrl+O
        • 12 лет назад, # ^ |
          Rev. 5   Проголосовать: нравится +2 Проголосовать: не нравится

          Можно батник получше замутить - на Enter компиляцию поставить, у меня так сделано.

          Вот батник.
          Как настроить:
          1. В фаре в настройках Commands -> file associations нажимаем insert.
          2. В "A file mask..." пишем *.cpp
          3. Оставляем крестик напротив "Execute command (used for Enter)"
          4. Пишем там что-то вроде "Compile.bat !", где вместо Compile.bat имя вашего батника.
          5. Жмем ОК.
          6. Радуемся)

          UPD. Точно так же можно повесить на другую клавишу GDB например.
          • 12 лет назад, # ^ |
              Проголосовать: нравится 0 Проголосовать: не нравится
            А зачем эти ифы в батнике?
            • 12 лет назад, # ^ |
              Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

              Ой, действительно. Они лишние. Вообще они проверяют, есть ли нужный файл. Я с тех пор перенастроил FAR немного, батники старые остались.

              UPD. Перезалил.

              • 12 лет назад, # ^ |
                Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

                :) Я просто всегда без ифов писал.

                • 12 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится
                  У меня раньше было так настроено, что если нажать в какой-то другой папке на Enter, оно будет пытаться компилить файл с таким названием в папке с g++.
                  То есть оно либо ничего не компилило, либо компилило совсем не тот файл :) Потом нормально сделал.
          • 12 лет назад, # ^ |
              Проголосовать: нравится 0 Проголосовать: не нравится
            Подскажите, у меня проблема. Я скачал ваш батник, но не могу привязать его к клавише Enter. Когда открываю Command -> file assiciations то появляется одна черная строка.
            Из-за чего это может быть?
          • 11 лет назад, # ^ |
              Проголосовать: нравится 0 Проголосовать: не нравится

            К примеру программа hello.cpp которая выводит Hello, world! Надоедает рутина в данном случае:
            -Нажимать enter
            -Потом открывать откомпилированый hello.exe
            -А потом нажимать ctrl-o, чтобы посмотреть результат hello.exe

            Можно это как-то сократить, чтобы по нажатию enter сразу показывал результат hello.exe?

            • 11 лет назад, # ^ |
                Проголосовать: нравится 0 Проголосовать: не нравится

              Потом открывать откомпилированый hello.exe

              Что ты имеешь в виду?

              • 11 лет назад, # ^ |
                Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

                ну т.е. запускать hello.exe потом он закрывается тут же, а потом нужно смотреть результат работы hello.exe

                • 11 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  ты хочешь просто нажать на hello.cpp и если нету ошибки компиляций, то сразу же запустилась hello.exe?

                  • 11 лет назад, # ^ |
                      Проголосовать: нравится 0 Проголосовать: не нравится

                    да

                    • 11 лет назад, # ^ |
                        Проголосовать: нравится 0 Проголосовать: не нравится

                      ctrl+u(чтобы перейти в правую часть), F5(Режим: последний измененный файл будет сверху), ← для того чтобы быстро перейти на вверх. Замени ctrl+o на ctrl+p, будет удобно просто посмотреть на левую часть для того чтобы увидеть ошибки. Теперь все будет быстро и легко.

»
10 лет назад, # |
  Проголосовать: нравится +13 Проголосовать: не нравится

Как уменьшить шрифт текста в far-e?

  • »
    »
    10 лет назад, # ^ |
      Проголосовать: нравится +8 Проголосовать: не нравится

    Это в свойствах консоли: правой кнопкой на заголовок окна и далее выбираете свойства/умолчания. Там вроде даже можно задать "всегда для этой программы"

»
10 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

In Linux I used gedit with MC

»
10 лет назад, # |
Rev. 2   Проголосовать: нравится +3 Проголосовать: не нравится

I think I'm not really getting it. What is the advantage of this over a good shell + editor combination like GNU EMACS or vim? Scriptability is hardly a good argument because any given piece of GNU software can be scripted

»
10 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can you compare this program with Vim/gVim. Vim is also a powerful tool too.

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I am trying to compile in far manager, if i install g++ on terminal it will compile? what i have to do ?

»
8 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

For anyone curious, the syntax highlighting is included "since post build 3200", so if you download one of the newer builds of far manager, far colorer(the syntax highlighter) is already included.

»
8 лет назад, # |
Rev. 2   Проголосовать: нравится +3 Проголосовать: не нравится

I will strongly recommend Geany for Linux. It's very simple and you don't have most of the unuseful things that Eclipse and other IDEs have. I haven't tried it on Windows but I thing there is a version for it.

»
8 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

How to set up and use indentation in Far manager ??

  • »
    »
    8 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    F9 — Options — Editor settings. I'd recommend checking "Auto indent" and adjusting "Tab size". You can also use Alt+I for adding one space of identation to the selected block and Alt+U for removing one space of identation.

    P.S. I'd also recommend checking "Del removes blocks" (otherwise Del will remove just one character and not the selection),

    • »
      »
      »
      8 лет назад, # ^ |
        Проголосовать: нравится +13 Проголосовать: не нравится

      Thanks a lot :)

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится -10 Проголосовать: не нравится

      How can I select a block to delete? Ctr + A is useful but I can't select a block which I want to delete.Please Help :)

      • »
        »
        »
        »
        7 лет назад, # ^ |
          Проголосовать: нравится +10 Проголосовать: не нравится

        As you would do in almost any Windows editor (Word, Notepad, Notepad++): hold Shift (current text cursor position will be selection block's start) and move text cursor with arrows/Home/End/PgUp/PgDn/etc to choose selection block's end.

    • »
      »
      »
      7 лет назад, # ^ |
        Проголосовать: нравится -10 Проголосовать: не нравится

      What's the meaning of [x] before the setting operations?

      • »
        »
        »
        »
        7 лет назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        [ ] is like a checkbox in GUI — it's either unchecked ([ ], meaning "option is disabled") or checked ([x], meaning "option is enabled").

        • »
          »
          »
          »
          »
          7 лет назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится

          I still have a problem to set Macro so that I needn't to input a long instruction to compile or compile and run my cpp files, can you tell me how to do it?

          • »
            »
            »
            »
            »
            »
            7 лет назад, # ^ |
              Проголосовать: нравится 0 Проголосовать: не нравится

            You'd better use file associations for that. What exactly do you want your macro to do and in which situation?

            • »
              »
              »
              »
              »
              »
              »
              7 лет назад, # ^ |
                Проголосовать: нравится 0 Проголосовать: не нравится

              As your suggestion, I want to compile and run my program just type Ctrl + F9(for example) with defined Macro, so where and how should I to edit my Macro?

              • »
                »
                »
                »
                »
                »
                »
                »
                7 лет назад, # ^ |
                  Проголосовать: нравится 0 Проголосовать: не нравится

                Macros work on very low level: they just emulate key presses. So, for example, macro configured to compile and run from inside the editor won't work in other situations (moreover, it would do something ridiculous).

                You start from the situation where you want to run your macro, press Ctrl+Shift+dot once, then perform all necessary actions to compile the program (avoid typing filename, for example, as it may be different in different times), then press Ctrl+Shift+dot once again. Then set a hotkey for the macro. Then, whenever you will press that hotkey, your macro will be played.

                You will probably get something like Escape; Enter — exit the editor, then compile the file (via file associations).

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  7 лет назад, # ^ |
                  Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

                  How would you accommodate for different file names? Additionally, how would you delete the entire line the cursor is at? Ctrl+Shift+Backspace tends to be too time consuming.

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  7 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  If you talk about file associations, use special symbols (press F1 in the "Edit file association" window to get help — English is available as well). The most useful is ! — file name without extension. So, my compilation command is g++ !.cpp -o !.exe -ggdb -DDEBUG -std=c++11 -O2 -Wl,--stack=256000000 -Wall -Wextra -Wshadow

                  Ctrl+Y deletes current line. Again, you can get list of hotkeys by pressing F1 in the editor.

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  7 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  How to install that g++ thing? I downloaded installation file from here https://sourceforge.net/projects/mingw/ and then marked all stuff in "Basic Setup" and installed it. I didn't restart computer, but Far Manager still doesn't recognize g++ option.

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  7 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  @IAmNomad you must set the path in your environment variables(in windows) to that of the bin folder of mingw. You can google setting up a path for gcc to get a detailed solution. After setting the path I think a restart of FarManager is enough(I am not sure for me I had sublime and restart was enough).

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  7 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  Thanks, worked!

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  7 лет назад, # ^ |
                  Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

                  Why does error "The procedure entry point __gxx_personality_v0 could not be located in the dynamic link library C:\Work\sol.exe" occur?

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  7 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  Solution is easy: add -static-libgcc -static-libstdc++

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  7 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  I know this is a little late but I can't seem to locate this in the English documentation.

                  How do you find the absolute path of a file in far manager and push it to the clipboard?

                  I have seen on multiple screencasts of yours and Gennady's that you copy the path of a file from Far and paste it into the website for quick submission.

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  7 лет назад, # ^ |
                  Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

                  Looks like you can press Ctrl+Alt+Insert to copy full path of the selected file into clipboard. I didn't know that yet, thank you! Found that under F1 — Keyboard reference — Panel Control.

                  My previous workflow was to put selection on .., press Ctrl+Enter to type full directory path in command line, then press Ctrl+Insert to copy command line's content into clipboard, then press Ctrl+Home to move cursor to command line's beginning and finally press Ctrl+K to remove everything in the command line till its end. Now I have directory's path in the clipboard, I can paste it into file selection dialog and the select the file with mouse.

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  6 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  for example, I set ctrl + F9 equals "g++ !.cpp -o !.exe -ggdb -DDEBUG -std=c++11 -O2 -Wl,--stack=256000000 -Wall -Wextra -Wshadow", when I was editing A.cpp, I ran ctrl + F9, but nothing happened, why?

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  6 лет назад, # ^ |
                    Проголосовать: нравится +3 Проголосовать: не нравится

                  How exactly did you set Ctrl+F9 to run something? Maybe it's for file panes only?

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  6 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  yes, I set it at file panes, what's the correct way to set it? thanks

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  6 лет назад, # ^ |
                    Проголосовать: нравится +4 Проголосовать: не нравится

                  How exactly did you set Ctrl+F9 to run something?

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  6 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  press ctrl + shift + dot and then press all the compile command and press ctrl + shift + dot again and then enter ctrl + F9

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  6 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  I see. It's called a macro, and it simply remembers what keys you've pressed and repeats them once you press Ctrl+F9. Say, if you've recorded these commands while being in the file pane, they probably do something very stupid when being run from the editor.

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  6 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится

                  SO what's the correct way to do this ? QAQ

                • »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  »
                  6 лет назад, # ^ |
                    Проголосовать: нравится 0 Проголосовать: не нравится
    • »
      »
      »
      6 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      How can we use snippets (like in sublime text) in far manager?

      • »
        »
        »
        »
        6 лет назад, # ^ |
          Проголосовать: нравится +3 Проголосовать: не нравится

        I don't think it's a built-in functionality, but you may try plugins like True Template or Text Templates. I haven't used any of them, though.

        • »
          »
          »
          »
          »
          3 года назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится

          Hi, I have a question. How do I install the True Template? I used the github files, but couldn't find any .dll files for the True Template. Hence, there still doesn't exist any Plugin Commands for the template in Far.

          • »
            »
            »
            »
            »
            »
            3 года назад, # ^ |
              Проголосовать: нравится 0 Проголосовать: не нравится

            I know its late but for anyone who has the same issue, this is the latest version as for now.. TrueTemplate-3.0.2.zip

            • »
              »
              »
              »
              »
              »
              »
              3 года назад, # ^ |
              Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

              oh, thanks a lot.

              btw, should i just extract them the files into the Plugins folder of Far Manager?

              UPD: yeah, it works. that's a relief.

              • »
                »
                »
                »
                »
                »
                »
                »
                3 года назад, # ^ |
                  Проголосовать: нравится 0 Проголосовать: не нравится

                np, btw have you ever faced crash while saving file with F2 key? Its really annoying me during live contests(crash has managed to happened at the worst possible time multiple times now) and i dont want to switch to vim permanently :(

    • »
      »
      »
      3 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      sir yeputons

      don't we have auto completion and automatic templates in far manager ?

»
7 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Well, it was not me who started necroposting. Rumors there are, FAR is now available for Linux

»
5 лет назад, # |
Rev. 2   Проголосовать: нравится +8 Проголосовать: не нравится

Well,when I When I type a newline,the cursor will always return to the beginning of the line.How can I solve this problem?In my opinion,when I type a new line ,the cursor will align with the previous line.

I want :

for(int i=1;i<=n;i++){
  for(int j=1;j<=m;j++){

  }
}

but not :

for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){

}
}
  • »
    »
    5 лет назад, # ^ |
      Проголосовать: нравится +16 Проголосовать: не нравится

    Enable autoindent feature in the editor settings.

    • »
      »
      »
      5 лет назад, # ^ |
        Проголосовать: нравится -13 Проголосовать: не нравится

      thanks,I did not read all the above exchange,yeputons had already solved this problem ,he said `F9 — Options — Editor settings. I'd recommend checking "Auto indent" and adjusting "Tab size". You can also use Alt+I for adding one space of identation to the selected block and Alt+U for removing one space of identation.

      P.S. I'd also recommend checking "Del removes blocks" (otherwise Del will remove just one character and not the selection),`

»
5 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

nice tutorial

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I can't seem to compile my C++ program when following Hernan's instructions. I have the right g++ and gdb. Can someone help me? Thanks in advance.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Far is great. However I cant use Auto Bracketing which was my favourite feature. Has anybody solved this issue?

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

How do I comment multiple lines in Far Editor?

Ctrl+/ isn't working

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I think this is the one tourist uses as his Editor

»
3 года назад, # |
Rev. 3   Проголосовать: нравится -10 Проголосовать: не нравится

.

»
3 года назад, # |
  Проголосовать: нравится -17 Проголосовать: не нравится

yeputons sir, My Far Manager crashes sometimes when i save changes made to my code and then i have to restart far and the changes which i made are not saved and i cant find anything on the internet...unfortunately, i cant keep using far during contests if this continues, please help.

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    If someone is facing a similar issue, I was previously running Far from the shortcut I pinned to my taskbar but now I always run Far from CMD and it has never crashed since, so that's that and finally, many thanks to this wonderfully supportive thread.

»
21 месяц назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Ancient thread, but for mac users, here is a port that I just discovered today — https://github.com/elfmz/far2l. Works almost flawlessly!

»
11 месяцев назад, # |
Rev. 3   Проголосовать: нравится 0 Проголосовать: не нравится