Sublime Forum

ST3 (3083) and Autocomplete + Anaconda Plugin

#1

Hey folks,

I’m having issues with autocomplete not functioning correctly. I’m on Ubuntu 14.10 using 3083 build of Sublime.
The control+space keybinding does not bring up autocomplete at all, and I’ve also set up a trigger on “.” which also
isn’t working. This is a fresh install as well.

The tab completion however works when I type for example in Python “os.tab_here” will bring up the completion box with tab, but fails to do so from the trigger.
I’m not sure if there is a conflict with the keybindings, but I think it’s related specifically with Python and the Anaconda plugin, as I can get autocomplete working naturally with HTML, CSS, and Javascript.

I reinstalled the plugin, but still to no avail. I think it’s related to the keybindings, but I’m not sure. Here’s my config files.

User settings.

{
	"auto_complete_triggers":
	
		{
			"characters": ".",
			"selector": "source.python - string - comment - constant.numeric"
		}
	],
	"caret_style": "phase",
	"color_scheme": "Packages/Predawn/predawn.tmTheme",
	"detect_slow_plugins": false,
	"file_exclude_patterns":
	
		".DS_Store",
		"*.pid",
		"*.pyc"
	],
	"find_selected_text": true,
	"findreplace_small": true,
	"fold_buttons": true,
	"folder_exclude_patterns":
	
		".git",
		"__pycache__",
		"env",
		"env3"
	],
	"font_face": "Droid Sans Mono",
	"font_options":
	
		"subpixel_antialias",
		"bold"
	],
	"font_size": 8,
	"highlight_line": true,
	"highlight_modified_tabs": true,
	"ignored_packages":
	
		"ActionScript",
		"Lisp",
		"Perl",
		"Textile",
		"ASP",
		"C++",
		"OCaml",
		"Erlang",
		"TCL",
		"Clojure",
		"Lua",
		"Objective-C",
		"D",
		"Groovy",
		"Pascal",
		"SideBarEnhancements",
		"Batch File",
		"PHP",
		"SublimeREPL",
		"Graphviz",
		"AppleScript",
		"LaTeX",
		"Ruby",
		"Haskell",
		"C#",
		"Matlab",
		"Vintage",
		"Scala",
		"Rails",
		"Go",
		"R",
		"Java",
		"Markdown"
	],
	"indent_guide_options":
	
		"draw_active"
	],
	"rulers":
	
		72,
		79
	],
	"scroll_past_end": false,
	"scroll_speed": 4.0,
	"sidebar_default": true,
	"tab_size": 4,
	"tabs_small": true,
	"theme": "predawn-DEV.sublime-theme",
	"word_wrap": true,
	"wrap_width": 80
}

Anaconda settings:

{
    "anaconda_tooltip_theme": "light",
    "complete_parameters": true,
    "complete_all_parameters": true,
    "display_signatures": true,
    "anaconda_linting": false,
    "anaconda_linting_behaviour": "save-only",
    "python_interpreter": "/usr/bin/python",
    "suppress_word_completions": true,
    "suppress_explicit_completions": true,
    "auto_formatting": false,
    "enable_signatures_tooltip": true
}
0 Likes