Hi,
I’m trying to turn off the auto-insertion of Perl code snippets when pressing tab after certain words.
For example, pressing tab after the word “test” inserts the following code:
#!/usr/bin/perl -w
use strict;
use Test::More tests => 1;
use ModuleName;
ok(assertion);
This is really annoying and I can’t seem to find a way to turn it off.
I have tried the following settings, but with no effect.
"auto_complete": false,
"auto_complete_commit_on_tab": false,
"tab_completion": false,
Can anyone offer any suggestions?
JP