From 3a409f5784bae59a814c74971f58611077c64ef1 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Mon, 25 Apr 2011 17:05:57 -0400 Subject: Changed Mac OSX Adeptsense completion from '~' to 'Ctrl+Esc'. --- modules/lua/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/lua/init.lua') diff --git a/modules/lua/init.lua b/modules/lua/init.lua index ae4d8ffc..cca7e3cb 100644 --- a/modules/lua/init.lua +++ b/modules/lua/init.lua @@ -19,7 +19,7 @@ module('_m.lua', package.seeall) -- + `:`: When to the right of a known symbol, show an autocompletion list of -- functions only. -- + `Ctrl+I`: (Windows and Linux) Autocomplete symbol. --- + `~`: (Mac OSX) Autocomplete symbol. +-- + `Ctrl+Esc`: (Mac OSX) Autocomplete symbol. -- + `Ctrl+H`: Show documentation for the selected symbol or the symbol under -- the caret. -- @@ -176,7 +176,7 @@ _G.keys.lua = { g = { goto_required }, }, ['s\n'] = { try_to_autocomplete_end }, - [not OSX and 'ci' or '~'] = { sense.complete, sense }, + [not OSX and 'ci' or 'cesc'] = { sense.complete, sense }, ch = { sense.show_apidoc, sense }, } -- cgit v1.2.3