Notepad++ and code completion

前端 未结 6 2055
情话喂你
情话喂你 2021-02-02 07:19

Is there any way to improve code completion in notepad++?

Currently it supports some kind of \"static\" code completion and it requires to make a list of instructions a

相关标签:
6条回答
  • 2021-02-02 08:00

    You don’t need a plugin at all. On the main menu go to Settings->Preferences. Then head on over to the Backup/Auto-Completion tab. Check the box labeled “Enable auto-completion on each input” and select the “Word completion” option.

    0 讨论(0)
  • 2021-02-02 08:04

    No. NotePad++ is a text-editor, not an IDE. Unless you want to extend it yourself, you are not going to do any better than what is there.

    0 讨论(0)
  • 2021-02-02 08:16

    You have some code completion sections to look at here. But i would mainly suggest you change to an IDE for the programming language because Notepad++ doesn't have any of the benefits you find in a Real IDE. ( Maybe because it's a text-editor and not an IDE ).

    0 讨论(0)
  • 2021-02-02 08:17

    Not possible without creating your own plugin.

    It might be faster to develop a script that parses your .h files and creates an auto-complete language file for notepad++.

    Although a plugin that parsed your include files (for any language) and added them to the auto-complete would be very nice.

    0 讨论(0)
  • 2021-02-02 08:21

    I'd recommend you take a look at Komodo Edit. It has the code completion you're looking for and has project support, and best of all, it's free.

    0 讨论(0)
  • 2021-02-02 08:23

    Make sure that when putting on autocomplete in notepad++ you select function completeion instead of word completion and have a tick in the function parameters hint on input as well.

    0 讨论(0)
提交回复
热议问题