all this is nice an everything but the code completion box pops up directly over the text im trying to type.... so its just in the way...
There needs to be a way to turn it off...
all this is nice an everything but the code completion box pops up directly over the text im trying to type.... so its just in the way...
There needs to be a way to turn it off...
Just type the next letter of the word you were typing. Honestly that's the first complaint I ever heard about code completion being there. Usually people complain some editor doesn't have that functionality. I think Trolls didn't assume anyone would ever want to turn it off.
Did you try disabling the plugin as suggested?There needs to be a way to turn it off...
There is no options for disable plugins. You can rename or delete CppTools.dll but him depending from CppEditor. Where Creator is starting you get warning message about failed loading plugins and after this you can't edit source files, just nothing happens when you dblclick on .cpp or .h.
It's also doesn't work:
Qt Code:
D:\Work\qt-creator-1.3.0\bin>qtcreator.exe -noload CppToolsTo copy to clipboard, switch view to plain text mode
![]()
It does work. That's why you see the window with unresolved dependencies.
It's hard for something to work if something it depends on is not there. A proper solution is to clone Qt Creator git repository and implement the functionality you want by yourself.
A solution on Windows would be UltraEdit. You edit your code in that, and then when you want to compile, you switch to QtCreator and hit the compile hotkey. I do this at work as the IDE they use is garbage - notepad would be better! (Seriously, for a £3000 product, you wouldn't expect the line to flicker after each character typed due to the constant redrawing)
There are similar alternatives for Linux.
Using other code editor is avoiding problem. Need more settings in QtCreator and developers must somehow know about this, so i think topicstarter must create bugreport (suggestion) for QtCreator or, as say wysota, go to QtCreator git repository and suggest patch.
Qt Creator is mainly a text editor. Switching to Qt Creator just to complile your code doesn't make sense. It's faster to do it from the command line.
Command line can be annoying though. If you compile a source file and find out you have 20,000 errors because of a missing semicolon, you can't find that out because the first error is beyond the start of the buffer. Qt Creator will show you the first error and even let you move through them and jump to the (sometimes approximate) offending line of code.
It will jump with the external editor? If not then it's just a matter of redirecting make's output to something else than the command line console - i.e. a file or a pipe. Some advanced editors would even allow running make from within themselves and would show the output in some nice window.
Bookmarks