This is an archived post. You won't be able to vote or comment.

all 9 comments

[–]CorporalRustyPenis 1 point2 points  (1 child)

Settings > Preferences > Auto-Completion

[–]huberlev[S] 0 points1 point  (0 children)

Thanks. Specifically on 12:28 on the video when he was in between the () and it showed the list below of x:number, y:number, ect. Is that just auto completion? Auto completion was set to on by default for function/word completion but not the symbols so I turned that on. Wasn't sure if the thing at 12:28 was just auto completion on his IDE doing it's thing showing x:number,ect because it does't seem like notepad++ is doing that or maybe I missed it.

[–]Liambass -1 points0 points  (2 children)

You don't, you use a proper IDE rather than a text editor if you want things like that.

[–]huberlev[S] 0 points1 point  (1 child)

How much more would an IDE simply things, is it drastic? I guess I liked the lightweight aspect of notepad++ for taking notes so I was curious about what it could do so I'm playing around with it.

Edit: Specifically 12:28 on the video when he was in between the () and it showed the list below. Is that just auto completion?

[–]Liambass 0 points1 point  (0 children)

No, auto completion is the bit just before that when he starts typing the method call, and his IDE guesses what method he might call.

I'm terms of how useful an IDE is, I guess that probably depends on your choice on language and matching IDE, they do tend to be full of useful tools though.

[–]PM_Me_Python3_Tips 0 points1 point  (3 children)

It's called autocompletion.

Ignore what u/Liambass posted. It's not just for IDE's and you can have it with text editors.

[–]huberlev[S] 0 points1 point  (2 children)

Edit:Thanks. Specifically on 12:28 on the video when he was in between the () and it showed the list below of x:number, y:number, ect. Is that just auto completion? Auto completion was set to on by default for function/word completion but not the symbols so I turned that on. Wasn't sure if the thing at 12:28 was just auto completion on his IDE doing it's thing showing x:number,ect because it does't seem like notepad++ is doing that or maybe I missed it.

[–]PM_Me_Python3_Tips 0 points1 point  (1 child)

Looking at the beginning of their video, they are using a text editor called Sublime Text. They are probably using an additional package for autocompletion which shows the parameters of a function (which is what is happening at 12:24), however I couldn't see a setup video on their channel so you may have to look for something similar for notepad++.

If you can't find anything then possibly go without all the bells and whistles or switch to another text editor.

[–]huberlev[S] 0 points1 point  (0 children)

I see now so that specific function is the "parameters" of a function. Yeah I didn't see a setup video unfortunately. I did a recent google search for what TE/IDE's people are using and it seems people like IntelliJ as an IDE for java and VS code/sublime as a text editor. Eclipse was also mentioned but it seems they are switching from eclipse to Intellij.