You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
Thanks for atom-inline-autocomplete, this is similar to the most useful feature in Komodo IDE which I've used for years. I develop in Perl and find that if I hit Esc to trigger the auto-complete with your package, any preceding '$' or '%' character is removed, e.g. if my code is:
!/usr/bin/perl
use strict;
my $variable = 123;
Then I type:
$v
and then hit Esc, I end up with:
variable
i.e., the '$' has been removed.
Atom 1.2.4 on OS X 10.11.1
The text was updated successfully, but these errors were encountered:
This happens because $ is not in "Non Word Characters" list. I had the similar issue with PHP.
This list can be found under the Preferences => Packages => language-perl => Settings
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Thanks for atom-inline-autocomplete, this is similar to the most useful feature in Komodo IDE which I've used for years. I develop in Perl and find that if I hit Esc to trigger the auto-complete with your package, any preceding '$' or '%' character is removed, e.g. if my code is:
!/usr/bin/perl
use strict;
my $variable = 123;
Then I type:
$v
and then hit Esc, I end up with:
variable
i.e., the '$' has been removed.
Atom 1.2.4 on OS X 10.11.1
The text was updated successfully, but these errors were encountered: