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

Автор gjy5885, история, 4 года назад, По-английски

Upd2: This video(https://www.youtube.com/watch?v=XLcKRaw7QtQ&feature=youtu.be) can help better show my problem. Upd1: Instead of reformatting my code, I want to implement real-time space completion in coding.

Hi everyone, For example, if I type "x=1", there are no spaces, unless I manually add them. For convenience and productivity reasons, I’m looking for an automatic way to get: "x = 1". This means that when I enter "=" is equivalent to input " = ". The operator may be =,+,-,/,*,etc. Recently, I have seen similar functions on the website: https://wingware.com/hints/auto-editing#:~:text=When%20enabled%20with%20the%20Editor,Wing%20will%20enter%20x%20%3D%201. It's called Auto-Enter Spaces, but only for Python. Since my main language is C++, I hope to find similar functions for C++. If anyone helps me, thank you very much!

  • Проголосовать: нравится
  • +4
  • Проголосовать: не нравится

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

Auto comment: topic has been updated by gjy5885 (previous revision, new revision, compare).

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

Hi
I think what you're looking for is a Code Formatter
But idk what text editor/IDE you use
But you can try this and choose your coding style from the list preferably Google

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

    Thank you so much, I was looking for this too. Before knowing this site I usually do it manually or make a C++ to format it

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

If you use Sublime text 3, you can install CoolFormat from Package Control and use Ctrl + Shift + Alt + Q to format whole code.

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

    Thx! Instead of reformatting my code, I want to implement real-time space completion in coding.

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

Assuming you use Vim, there are plugins like ALE that you could use. I've only used it for linting Javascript, but stuff like cpplint and clang-tidy exist so it probably works.

»
4 года назад, # |
  Проголосовать: нравится +124 Проголосовать: не нравится
You won't believe
»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

And without jokes, modern IDEs have hotkeys

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

    Thx! Instead of reformatting my code, I want to implement real-time space completion in coding.

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

Auto comment: topic has been updated by gjy5885 (previous revision, new revision, compare).

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

I think what you're trying to hint is known as format-as-you-type/format-on-type feature.

There are many language servers which can do this, I personally use LLVM's clangd in VSCode. It's easy to setup clangd on VSCode and performance is quite good. Besides formatting, clangd also has many cool features because of its integration with the LLVM compiler infrastructure.

I get the formatting done automatically when I break the expression by using {, ;, or ).

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

Auto comment: topic has been updated by gjy5885 (previous revision, new revision, compare).

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

If you're using vscode, there's "format on type". It format each after typing.

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

I suggest you try running an auto-formatter (e.g. clangformat or equivalent) automatically when saving the source code file. This way it's not so intrusive that it interferes with your typing flow. All decent IDEs should be able to be configured to run commands on save, and there should be a bunch of tutorials on the internet on how to configure them.