This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
bakeybk's profile picture

how do I stop computer craft from suggesting text to write?

Started by bakeybk, 15 December 2015 - 08:56 PM
bakeybk #1
Posted 15 December 2015 - 09:56 PM
Whenever I am typing in a computer (in minecraft) suggestions pop up in gray for whatever I am about to write. This is very annoying and I would wish to turn of this feature. Anyone know how?
Wojbie #2
Posted 15 December 2015 - 10:23 PM
There is a program one of users made here
http://www.computercraft.info/forums2/index.php?/topic/24769-autocomplete/
It should do what you wanted it to do.
Anavrins #3
Posted 16 December 2015 - 01:58 AM
There's that program, or you can use simple one-liners in your startup file.
shell.complete = function()end – Removes the shell's autocomplete
textutils.complete = function()end – Removes edit's
Edited on 16 December 2015 - 01:00 AM
bakeybk #4
Posted 16 December 2015 - 05:33 AM
thanks guys!