From c4ea7f14374c01367e814864ab0cf28385eb76d2 Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Wed, 18 Mar 2015 15:59:17 -0600 Subject: [PATCH 01/14] CodeIntel package must be installed with pip --- README.rst | 1 + messages/3.0.0.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/README.rst b/README.rst index e2e69643..d57f1eb0 100644 --- a/README.rst +++ b/README.rst @@ -183,6 +183,7 @@ What's New v3.0.0 (unreleased, alpha): + Uses CodeIntel as an OOP command and package. + Needs to install CodeIntel with pip: `pip install codeintel` v2.1.8 (2015-03-18): diff --git a/messages/3.0.0.txt b/messages/3.0.0.txt index 523f9d6e..c6d87d56 100644 --- a/messages/3.0.0.txt +++ b/messages/3.0.0.txt @@ -32,3 +32,4 @@ CHANGES/FIXES v3.0.0 (unreleased, alpha): + Uses CodeIntel as an OOP command and package. + Needs to install CodeIntel with pip: `pip install codeintel` From c24b2a01177b99892817775e719a52c7ec3a7712 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20M=2E=20Bravo?= Date: Thu, 19 Mar 2015 07:05:32 -0600 Subject: [PATCH 02/14] Removed alpha from packages.json --- packages.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages.json b/packages.json index ec544de1..5da9ad6f 100644 --- a/packages.json +++ b/packages.json @@ -22,11 +22,6 @@ "version": "2.1.8+st3", "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.8+st3.zip", "date": "2015-03-18 00:00:00" - }, - { - "version": "3.0.0-alpha1", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-alpha1.zip", - "date": "2015-03-18 00:00:00" } ] } From d97dbcdac453999b1841fd5ebf286cb836960134 Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Sat, 21 Mar 2015 10:00:36 -0600 Subject: [PATCH 03/14] Added alpha (sublime_text part was missing?) --- packages.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages.json b/packages.json index 5da9ad6f..d9b9cb2c 100644 --- a/packages.json +++ b/packages.json @@ -22,6 +22,12 @@ "version": "2.1.8+st3", "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.8+st3.zip", "date": "2015-03-18 00:00:00" + }, + { + "sublime_text": "*", + "version": "3.0.0-alpha1", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-alpha1.zip", + "date": "2015-03-18 00:00:00" } ] } From 88ca4d143191e302c6fd4e4b43306c4ec212c809 Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Sat, 21 Mar 2015 10:15:17 -0600 Subject: [PATCH 04/14] codeintel_enabled receives two optional parameters --- SublimeCodeIntel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SublimeCodeIntel.py b/SublimeCodeIntel.py index 078e78af..28db446d 100644 --- a/SublimeCodeIntel.py +++ b/SublimeCodeIntel.py @@ -1390,7 +1390,7 @@ def setChangeCallbackToSettingsFile(self): # make sure all settings could be loaded and sublime is ready -def codeintel_enabled(default=False): +def codeintel_enabled(view=None, default=False): return settings_manager.sublime_auto_complete is not None From f401b96b94440367680963300b4accd9fe604668 Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Sat, 21 Mar 2015 10:31:53 -0600 Subject: [PATCH 05/14] v2.1.9 released --- README.rst | 5 +++++ SublimeCodeIntel.py | 2 +- messages.json | 3 ++- messages/2.1.9.txt | 34 ++++++++++++++++++++++++++++++++++ packages.json | 18 +++++++++--------- 5 files changed, 51 insertions(+), 11 deletions(-) create mode 100644 messages/2.1.9.txt diff --git a/README.rst b/README.rst index d57f1eb0..fb131a2a 100644 --- a/README.rst +++ b/README.rst @@ -186,6 +186,11 @@ v3.0.0 (unreleased, alpha): Needs to install CodeIntel with pip: `pip install codeintel` +v2.1.9 (2015-03-21): + ++ Fixed issue with codeintel_enabled() + + v2.1.8 (2015-03-18): + Fixed issue with is_enabled() diff --git a/SublimeCodeIntel.py b/SublimeCodeIntel.py index 28db446d..74e98d9a 100644 --- a/SublimeCodeIntel.py +++ b/SublimeCodeIntel.py @@ -62,7 +62,7 @@ """ from __future__ import print_function, unicode_literals -VERSION = "2.1.8" +VERSION = "2.1.9" import os import re diff --git a/messages.json b/messages.json index bb57bd27..c9c1cc90 100644 --- a/messages.json +++ b/messages.json @@ -18,5 +18,6 @@ "2.1.5": "messages/2.1.5.txt", "2.1.6": "messages/2.1.6.txt", "2.1.7": "messages/2.1.7.txt", - "2.1.8": "messages/2.1.8.txt" + "2.1.8": "messages/2.1.8.txt", + "2.1.9": "messages/2.1.9.txt" } \ No newline at end of file diff --git a/messages/2.1.9.txt b/messages/2.1.9.txt new file mode 100644 index 00000000..3ae3189d --- /dev/null +++ b/messages/2.1.9.txt @@ -0,0 +1,34 @@ +SublimeCodeIntel v2.1.9 Release Notes +===================================== + +A full-featured code intelligence and smart autocomplete engine for Sublime Text. +(Code intelligence plugin ported from Open Komodo Editor to Sublime Text) + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! HELP WANTED !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +!! Maintaining this project is hard, I do it in my spare time, but I'm !! +!! basically all alone. If anyone is interested in contributing, please !! +!! contact me. I really need much more help maintaining SublimeCodeIntel !! +!! !! +!! Follow me on twitter @germbravo !! +!! You can find us at #sublimecodeintel on irc.freenode.net !! +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +** Restart Sublime Text after reading this ** + +In case of trouble, please read the Troubleshooting section in the README. + +If you like SublimeCodeIntel, please make a donation: http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html + + +For more information: +--------------------- +Please take the time to read the documentation: + +* Online - http://sublimecodeintel.github.io/SublimeCodeIntel/ + + +CHANGES/FIXES +------------- +v2.1.9 (2015-03-21): + ++ Fixed issue with codeintel_enabled() diff --git a/packages.json b/packages.json index d9b9cb2c..e6a777fb 100644 --- a/packages.json +++ b/packages.json @@ -13,21 +13,21 @@ "releases": [ { "sublime_text": "<3000", - "version": "2.1.8", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.8.zip", - "date": "2015-03-18 00:00:00" + "version": "2.1.9", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.9.zip", + "date": "2015-03-21 00:00:00" }, { "sublime_text": ">=3000", - "version": "2.1.8+st3", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.8+st3.zip", - "date": "2015-03-18 00:00:00" + "version": "2.1.9+st3", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.9+st3.zip", + "date": "2015-03-21 00:00:00" }, { "sublime_text": "*", - "version": "3.0.0-alpha1", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-alpha1.zip", - "date": "2015-03-18 00:00:00" + "version": "3.0.0-alpha2", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-alpha2.zip", + "date": "2015-03-21 00:00:00" } ] } From d14cc403348e73e5a57bb931121957260d36cb29 Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Thu, 26 Mar 2015 10:01:57 -0600 Subject: [PATCH 06/14] CodeIntel triggering improved (always try after inserting a function snippet) --- SublimeCodeIntel.py | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/SublimeCodeIntel.py b/SublimeCodeIntel.py index 74e98d9a..f2ad1e8b 100644 --- a/SublimeCodeIntel.py +++ b/SublimeCodeIntel.py @@ -1476,17 +1476,26 @@ def on_modified(self, view): if is_stop_char: hide_auto_complete(view) - # print('on_modified', view.command_history(1), view.command_history(0), view.command_history(-1)) - if (not hasattr(view, 'command_history') or view.command_history(1)[1] is None and ( - view.command_history(0)[0] == 'insert' and ( - view.command_history(0)[1]['characters'][-1] != '\n' - ) or - view.command_history(-1)[0] in ('insert', 'paste') and ( - view.command_history(0)[0] == 'commit_completion' or - view.command_history(0)[0] == 'insert_snippet' and view.command_history(0)[1]['contents'] == '($0)' - ) - )): - if view.command_history(0)[0] == 'commit_completion': + command_history = getattr(view, 'command_history', None) + if command_history: + redo_command = command_history(1) + previous_command = view.command_history(0) + before_previous_command = view.command_history(-1) + else: + redo_command = previous_command = before_previous_command = None + + # print('on_modified', "'%s'" % current_char, redo_command, previous_command, before_previous_command) + if not command_history or redo_command[1] is None and ( + previous_command[0] == 'paste' or + previous_command[0] == 'insert' and previous_command[1]['characters'][-1] not in ('\n', '\t') or + previous_command[0] == 'insert_snippet' and previous_command[1]['contents'] == '($0)' or + before_previous_command[0] in ('insert', 'paste') and ( + previous_command[0] == 'commit_completion' or + previous_command[0] == 'insert_completion' or + previous_command[0] == 'insert_best_completion' + ) + ): + if previous_command[0] == 'commit_completion': forms = ('calltips',) else: forms = ('calltips', 'cplns') From c1b34873a90c3502de77dd983a93ec7bd5293d7e Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Thu, 26 Mar 2015 12:23:51 -0600 Subject: [PATCH 07/14] v2.2.0 released --- README.rst | 22 ++++++++++++++++ SublimeCodeIntel.py | 2 +- messages.json | 3 ++- messages/2.2.0.txt | 61 ++++++++++++++++++++++++++++++++++++++++++++ messages/install.txt | 50 +++++++++++++++++++++++------------- packages.json | 18 ++++++------- 6 files changed, 127 insertions(+), 29 deletions(-) create mode 100644 messages/2.2.0.txt diff --git a/README.rst b/README.rst index fb131a2a..f9ec7cc8 100644 --- a/README.rst +++ b/README.rst @@ -177,6 +177,23 @@ Building process is no longer distributed with this repository. You need to get More information in SublimeCodeIntel/CodeIntelSources/`src `_. +Notes +----- + +For the next major version of SublimeCodeIntel (v3.0.0) you will have to ensure +that CodeIntel package (https://pypi.python.org/pypi/CodeIntel) is installed on +your system usually by using pip or easy_install. The Code intelligence will be +handled by that package and the command ``codeintel`` it will install. + + +Please start trying to install the CodeIntel package as soon as possible to make +sure you are ready for the upcoming version of SublimeCodeIntel: + +1. Install Python 2 and pip (http://www.pip-installer.org/en/latest/installing.html). + +2. Install (or upgrade) ``CodeIntel`` by typing the following in a terminal: ``pip install -U codeintel`` + + What's New ---------- @@ -186,6 +203,11 @@ v3.0.0 (unreleased, alpha): Needs to install CodeIntel with pip: `pip install codeintel` +v2.2.0 (2015-03-26): + ++ Fixed issue with tabs and autocomplete + + v2.1.9 (2015-03-21): + Fixed issue with codeintel_enabled() diff --git a/SublimeCodeIntel.py b/SublimeCodeIntel.py index f2ad1e8b..6ed49f10 100644 --- a/SublimeCodeIntel.py +++ b/SublimeCodeIntel.py @@ -62,7 +62,7 @@ """ from __future__ import print_function, unicode_literals -VERSION = "2.1.9" +VERSION = "2.2.0" import os import re diff --git a/messages.json b/messages.json index c9c1cc90..affe415d 100644 --- a/messages.json +++ b/messages.json @@ -19,5 +19,6 @@ "2.1.6": "messages/2.1.6.txt", "2.1.7": "messages/2.1.7.txt", "2.1.8": "messages/2.1.8.txt", - "2.1.9": "messages/2.1.9.txt" + "2.1.9": "messages/2.1.9.txt", + "2.2.0": "messages/2.2.0.txt" } \ No newline at end of file diff --git a/messages/2.2.0.txt b/messages/2.2.0.txt new file mode 100644 index 00000000..3d94ea02 --- /dev/null +++ b/messages/2.2.0.txt @@ -0,0 +1,61 @@ +SublimeCodeIntel v2.2.0 Release Notes +===================================== + + ____ _ _ _ ____ _ ___ _ _ +/ ___| _ _| |__ | (_)_ __ ___ ___ / ___|___ __| | ___|_ _|_ __ | |_ ___| | +\___ \| | | | '_ \| | | '_ ` _ \ / _ \ | / _ \ / _` |/ _ \| || '_ \| __/ _ \ | + ___) | |_| | |_) | | | | | | | | __/ |__| (_) | (_| | __/| || | | | || __/ | +|____/ \__,_|_.__/|_|_|_| |_| |_|\___|\____\___/ \__,_|\___|___|_| |_|\__\___|_| +A full-featured code intelligence and smart autocomplete engine for Sublime Text. + (Code intelligence plugin ported from Open Komodo Editor to Sublime Text) + + ++-------------------------------- HELP WANTED ---------------------------------+ +| Maintaining this project is hard, I do it in my spare time, but I'm | +| basically all alone. If anyone is interested in contributing, please | +| contact me. I really need much more help maintaining SublimeCodeIntel | +| | +| Follow me on twitter @germbravo | +| You can find us at #sublimecodeintel on irc.freenode.net | +| | +| If you like SublimeCodeIntel, please make a donation: | +| http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html | ++------------------------------------------------------------------------------+ + + +Notes +----- + +For the next major version of SublimeCodeIntel (v3.0.0) you will have to ensure +that CodeIntel package (https://pypi.python.org/pypi/CodeIntel) is installed on +your system usually by using pip or easy_install. The Code intelligence will be +handled by that package and the command ``codeintel`` it will install. + + +Please start trying to install the CodeIntel package as soon as possible to make +sure you are ready for the upcoming version of SublimeCodeIntel: + +1. Install Python 2 and pip (http://www.pip-installer.org/en/latest/installing.html). + +2. Install (or upgrade) ``CodeIntel`` by typing the following in a terminal: ``pip install -U codeintel`` + + +** Restart Sublime Text after reading this ** + + + +More information +---------------- +Please take the time to read the documentation: + +In case of trouble, please read the Troubleshooting section in the README. + +* Online - http://sublimecodeintel.github.io/SublimeCodeIntel/ +* Git - https://github.com/SublimeCodeIntel/SublimeCodeIntel + + +CHANGES/FIXES +------------- +v2.2.0 (2015-03-26): + ++ Fixed issue with tabs and autocomplete diff --git a/messages/install.txt b/messages/install.txt index 46099664..f61610a1 100644 --- a/messages/install.txt +++ b/messages/install.txt @@ -1,27 +1,30 @@ SublimeCodeIntel ================ + ____ _ _ _ ____ _ ___ _ _ +/ ___| _ _| |__ | (_)_ __ ___ ___ / ___|___ __| | ___|_ _|_ __ | |_ ___| | +\___ \| | | | '_ \| | | '_ ` _ \ / _ \ | / _ \ / _` |/ _ \| || '_ \| __/ _ \ | + ___) | |_| | |_) | | | | | | | | __/ |__| (_) | (_| | __/| || | | | || __/ | +|____/ \__,_|_.__/|_|_|_| |_| |_|\___|\____\___/ \__,_|\___|___|_| |_|\__\___|_| A full-featured code intelligence and smart autocomplete engine for Sublime Text. -(Code intelligence plugin ported from Open Komodo Editor to Sublime Text) + (Code intelligence plugin ported from Open Komodo Editor to Sublime Text) -!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! HELP WANTED !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! Maintaining this project is hard, I do it in my spare time, but I'm !! -!! basically all alone. If anyone is interested in contributing, please !! -!! contact me. I really need much more help maintaining SublimeCodeIntel !! -!! !! -!! Follow me on twitter @germbravo !! -!! You can find us at #sublimecodeintel on irc.freenode.net !! -!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -** Restart Sublime Text after reading this ** - -In case of trouble, please read the Troubleshooting section in the README. ++-------------------------------- HELP WANTED ---------------------------------+ +| Maintaining this project is hard, I do it in my spare time, but I'm | +| basically all alone. If anyone is interested in contributing, please | +| contact me. I really need much more help maintaining SublimeCodeIntel | +| | +| Follow me on twitter @germbravo | +| You can find us at #sublimecodeintel on irc.freenode.net | +| | +| If you like SublimeCodeIntel, please make a donation: | +| http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html | ++------------------------------------------------------------------------------+ -If you like SublimeCodeIntel, please make a donation: http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html - -Features: ---------- +Features +-------- Supports all the languages Komodo Editor supports for Code Intelligence (CIX, CodeIntel2): @@ -56,14 +59,25 @@ Provides the following features: * Manual CodeIntel = ``Control+Shift+space`` -For more information: ---------------------- + +Notes +----- + +** Restart Sublime Text after reading this ** + + +More information +---------------- Please take the time to read the documentation: +In case of trouble, please read the Troubleshooting section in the README. + * Online - http://sublimecodeintel.github.io/SublimeCodeIntel/ +* Git - https://github.com/SublimeCodeIntel/SublimeCodeIntel IMPORTANT +--------- Do NOT edit the default SublimeCodeIntel settings. Your changes will be lost when SublimeCodeIntel is updated. ALWAYS edit the user SublimeCodeIntel settings diff --git a/packages.json b/packages.json index e6a777fb..0780c3bc 100644 --- a/packages.json +++ b/packages.json @@ -13,21 +13,21 @@ "releases": [ { "sublime_text": "<3000", - "version": "2.1.9", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.9.zip", - "date": "2015-03-21 00:00:00" + "version": "2.2.0", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.2.0.zip", + "date": "2015-03-26 00:00:00" }, { "sublime_text": ">=3000", - "version": "2.1.9+st3", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.9+st3.zip", - "date": "2015-03-21 00:00:00" + "version": "2.2.0+st3", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.2.0+st3.zip", + "date": "2015-03-26 00:00:00" }, { "sublime_text": "*", - "version": "3.0.0-alpha2", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-alpha2.zip", - "date": "2015-03-21 00:00:00" + "version": "3.0.0-alpha3", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-alpha3.zip", + "date": "2015-03-26 00:00:00" } ] } From 61717e4f3d984f9d36e404944b4f226601244cc3 Mon Sep 17 00:00:00 2001 From: Morton Fox Date: Sat, 9 May 2015 01:03:54 -0400 Subject: [PATCH 08/14] Update CodeIntelSources/src link --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index f9ec7cc8..7dea70c5 100644 --- a/README.rst +++ b/README.rst @@ -174,7 +174,7 @@ Building Building process is no longer distributed with this repository. You need to get SublimeCodeIntel/`CodeIntelSources `_ to run ``build.sh``. -More information in SublimeCodeIntel/CodeIntelSources/`src `_. +More information in SublimeCodeIntel/CodeIntelSources/`src `_. Notes From 3f2b4aabd1c1d44156a97341f224858fc05ed72f Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Mon, 19 Oct 2015 01:26:07 -0500 Subject: [PATCH 09/14] v3.0.0-beta released --- messages/3.0.0.txt | 3 ++- packages.json | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/messages/3.0.0.txt b/messages/3.0.0.txt index c6d87d56..5b1e3e6d 100644 --- a/messages/3.0.0.txt +++ b/messages/3.0.0.txt @@ -17,7 +17,8 @@ A full-featured code intelligence and smart autocomplete engine for Sublime Text In case of trouble, please read the Troubleshooting section in the README. -If you like SublimeCodeIntel, please make a donation: http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html +If you like SublimeCodeIntel, please make a donation: +http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html For more information: diff --git a/packages.json b/packages.json index 0780c3bc..0fe8d6ba 100644 --- a/packages.json +++ b/packages.json @@ -25,9 +25,9 @@ }, { "sublime_text": "*", - "version": "3.0.0-alpha3", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-alpha3.zip", - "date": "2015-03-26 00:00:00" + "version": "3.0.0-beta", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-beta.zip", + "date": "2015-10-19 00:00:00" } ] } From 03a89d25f9fdd550951550005b1d3dddb63bd02f Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Mon, 19 Oct 2015 14:22:09 -0500 Subject: [PATCH 10/14] Version bump to 3.0.0-beta2 --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 0fe8d6ba..ab6f352b 100644 --- a/packages.json +++ b/packages.json @@ -25,9 +25,9 @@ }, { "sublime_text": "*", - "version": "3.0.0-beta", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-beta.zip", - "date": "2015-10-19 00:00:00" + "version": "3.0.0-beta2", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-beta2.zip", + "date": "2015-10-19 02:00:00" } ] } From ee341ccdff22019bad5e6f57ed20d84a69d8c647 Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Mon, 19 Oct 2015 16:28:32 -0500 Subject: [PATCH 11/14] Version bump to 3.0.0-beta4 (golang) --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index ab6f352b..9a6a432a 100644 --- a/packages.json +++ b/packages.json @@ -25,9 +25,9 @@ }, { "sublime_text": "*", - "version": "3.0.0-beta2", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-beta2.zip", - "date": "2015-10-19 02:00:00" + "version": "3.0.0-beta4", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-beta4.zip", + "date": "2015-10-19 04:00:00" } ] } From 785a46ab7536caf35444224e88b2c98684391bab Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Mon, 19 Oct 2015 16:53:35 -0500 Subject: [PATCH 12/14] Version bump to 3.0.0-beta5 --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 9a6a432a..ba38b0fa 100644 --- a/packages.json +++ b/packages.json @@ -25,9 +25,9 @@ }, { "sublime_text": "*", - "version": "3.0.0-beta4", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-beta4.zip", - "date": "2015-10-19 04:00:00" + "version": "3.0.0-beta5", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-beta5.zip", + "date": "2015-10-19 05:00:00" } ] } From a5ffafbcbc84a82a49d6983bfa3e50fc8d72de00 Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Sat, 7 Nov 2015 12:40:04 -0600 Subject: [PATCH 13/14] Version bump to 3.0.0-beta6 --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index ba38b0fa..8d1aceba 100644 --- a/packages.json +++ b/packages.json @@ -25,9 +25,9 @@ }, { "sublime_text": "*", - "version": "3.0.0-beta5", - "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-beta5.zip", - "date": "2015-10-19 05:00:00" + "version": "3.0.0-beta6", + "url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-beta6.zip", + "date": "2015-11-07 00:00:00" } ] } From b062430a1329f51e7c6ca22fd7de699635ead607 Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Mon, 9 Nov 2015 10:24:06 -0600 Subject: [PATCH 14/14] Messages updated --- messages.json | 24 ++-------------- messages/2.2.0.txt | 21 +++++++++----- messages/3.0.0.txt | 68 +++++++++++++++++++++++++++++++------------- messages/install.txt | 40 +++++++++++--------------- 4 files changed, 82 insertions(+), 71 deletions(-) diff --git a/messages.json b/messages.json index affe415d..ebe792e3 100644 --- a/messages.json +++ b/messages.json @@ -1,24 +1,6 @@ { "install": "messages/install.txt", - "1.2.0": "messages/1.2.0.txt", - "1.3.0": "messages/1.3.0.txt", - "1.4.0": "messages/1.4.0.txt", - "2.0.0": "messages/2.0.0.txt", - "2.0.1": "messages/2.0.1.txt", - "2.0.2": "messages/2.0.2.txt", - "2.0.3": "messages/2.0.3.txt", - "2.0.4": "messages/2.0.4.txt", - "2.0.5": "messages/2.0.5.txt", - "2.0.6": "messages/2.0.6.txt", - "2.1.0": "messages/2.1.0.txt", - "2.1.1": "messages/2.1.1.txt", - "2.1.2": "messages/2.1.2.txt", - "2.1.3": "messages/2.1.3.txt", - "2.1.4": "messages/2.1.4.txt", - "2.1.5": "messages/2.1.5.txt", - "2.1.6": "messages/2.1.6.txt", - "2.1.7": "messages/2.1.7.txt", - "2.1.8": "messages/2.1.8.txt", - "2.1.9": "messages/2.1.9.txt", - "2.2.0": "messages/2.2.0.txt" + "2.2.0": "messages/2.2.0.txt", + "2.2.0+st3": "messages/2.2.0.txt", + "3.0.0-beta6": "messages/3.0.0.txt" } \ No newline at end of file diff --git a/messages/2.2.0.txt b/messages/2.2.0.txt index 3d94ea02..a420a04e 100644 --- a/messages/2.2.0.txt +++ b/messages/2.2.0.txt @@ -1,12 +1,9 @@ -SublimeCodeIntel v2.2.0 Release Notes -===================================== - ____ _ _ _ ____ _ ___ _ _ / ___| _ _| |__ | (_)_ __ ___ ___ / ___|___ __| | ___|_ _|_ __ | |_ ___| | \___ \| | | | '_ \| | | '_ ` _ \ / _ \ | / _ \ / _` |/ _ \| || '_ \| __/ _ \ | ___) | |_| | |_) | | | | | | | | __/ |__| (_) | (_| | __/| || | | | || __/ | |____/ \__,_|_.__/|_|_|_| |_| |_|\___|\____\___/ \__,_|\___|___|_| |_|\__\___|_| -A full-featured code intelligence and smart autocomplete engine for Sublime Text. +A full-featured code intelligence and smart autocomplete engine for Sublime Text (Code intelligence plugin ported from Open Komodo Editor to Sublime Text) @@ -23,13 +20,23 @@ A full-featured code intelligence and smart autocomplete engine for Sublime Text +------------------------------------------------------------------------------+ -Notes ------ + +SublimeCodeIntel +================ + +A full-featured code intelligence and smart autocomplete engine for Sublime Text. +(Code intelligence plugin ported from Open Komodo Editor to Sublime Text) + + + +Release Notes for v2.2.0 +------------------------ For the next major version of SublimeCodeIntel (v3.0.0) you will have to ensure that CodeIntel package (https://pypi.python.org/pypi/CodeIntel) is installed on your system usually by using pip or easy_install. The Code intelligence will be -handled by that package and the command ``codeintel`` it will install. +handled by that package and the command ``codeintel`` it will install in your +system. Please start trying to install the CodeIntel package as soon as possible to make diff --git a/messages/3.0.0.txt b/messages/3.0.0.txt index 5b1e3e6d..e1b0fd5c 100644 --- a/messages/3.0.0.txt +++ b/messages/3.0.0.txt @@ -1,36 +1,66 @@ -SublimeCodeIntel v3.0.0 Release Notes -===================================== + ____ _ _ _ ____ _ ___ _ _ +/ ___| _ _| |__ | (_)_ __ ___ ___ / ___|___ __| | ___|_ _|_ __ | |_ ___| | +\___ \| | | | '_ \| | | '_ ` _ \ / _ \ | / _ \ / _` |/ _ \| || '_ \| __/ _ \ | + ___) | |_| | |_) | | | | | | | | __/ |__| (_) | (_| | __/| || | | | || __/ | +|____/ \__,_|_.__/|_|_|_| |_| |_|\___|\____\___/ \__,_|\___|___|_| |_|\__\___|_| +A full-featured code intelligence and smart autocomplete engine for Sublime Text + (Code intelligence plugin ported from Open Komodo Editor to Sublime Text) + + ++-------------------------------- HELP WANTED ---------------------------------+ +| Maintaining this project is hard, I do it in my spare time, but I'm | +| basically all alone. If anyone is interested in contributing, please | +| contact me. I really need much more help maintaining SublimeCodeIntel | +| | +| Follow me on twitter @germbravo | +| You can find us at #sublimecodeintel on irc.freenode.net | +| | +| If you like SublimeCodeIntel, please make a donation: | +| http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html | ++------------------------------------------------------------------------------+ + + + +SublimeCodeIntel +================ A full-featured code intelligence and smart autocomplete engine for Sublime Text. (Code intelligence plugin ported from Open Komodo Editor to Sublime Text) -!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! HELP WANTED !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! Maintaining this project is hard, I do it in my spare time, but I'm !! -!! basically all alone. If anyone is interested in contributing, please !! -!! contact me. I really need much more help maintaining SublimeCodeIntel !! -!! !! -!! Follow me on twitter @germbravo !! -!! You can find us at #sublimecodeintel on irc.freenode.net !! -!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -** Restart Sublime Text after reading this ** -In case of trouble, please read the Troubleshooting section in the README. +Release Notes for v3.0.0-beta6 +------------------------------ + +SublimeCodeIntel v3 requires the CodeIntel Package (which is a Python 2 package) +[https://pypi.python.org/pypi/CodeIntel] and it should be installed on your +system usually by using pip or easy_install. The Code Intelligence is handled by +that package and the command ``codeintel`` it will install in your system. + -If you like SublimeCodeIntel, please make a donation: -http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html +SublimeCodeIntel v3.0.0-beta6 requires CodeIntel v0.9.3. Make sure it's updated! + +1. Install Python 2 and pip (http://www.pip-installer.org/en/latest/installing.html). + +2. Install (or upgrade) ``CodeIntel`` by typing the following in a terminal: + ``pip install -U codeintel`` -For more information: ---------------------- Please take the time to read the documentation: * Online - http://sublimecodeintel.github.io/SublimeCodeIntel/ +* Git - https://github.com/SublimeCodeIntel/SublimeCodeIntel + +In case of trouble, please read the Troubleshooting section in the README. + +** Restart Sublime Text after reading all this ** + + +What's New +---------- -CHANGES/FIXES -------------- v3.0.0 (unreleased, alpha): + Uses CodeIntel as an OOP command and package. - Needs to install CodeIntel with pip: `pip install codeintel` + Needs to install CodeIntel with pip: `pip install -U codeintel` diff --git a/messages/install.txt b/messages/install.txt index f61610a1..0d8d077b 100644 --- a/messages/install.txt +++ b/messages/install.txt @@ -1,12 +1,9 @@ -SublimeCodeIntel -================ - ____ _ _ _ ____ _ ___ _ _ / ___| _ _| |__ | (_)_ __ ___ ___ / ___|___ __| | ___|_ _|_ __ | |_ ___| | \___ \| | | | '_ \| | | '_ ` _ \ / _ \ | / _ \ / _` |/ _ \| || '_ \| __/ _ \ | ___) | |_| | |_) | | | | | | | | __/ |__| (_) | (_| | __/| || | | | || __/ | |____/ \__,_|_.__/|_|_|_| |_| |_|\___|\____\___/ \__,_|\___|___|_| |_|\__\___|_| -A full-featured code intelligence and smart autocomplete engine for Sublime Text. +A full-featured code intelligence and smart autocomplete engine for Sublime Text (Code intelligence plugin ported from Open Komodo Editor to Sublime Text) @@ -23,12 +20,20 @@ A full-featured code intelligence and smart autocomplete engine for Sublime Text +------------------------------------------------------------------------------+ -Features --------- + +SublimeCodeIntel +================ + +A full-featured code intelligence and smart autocomplete engine for Sublime Text. +(Code intelligence plugin ported from Open Komodo Editor to Sublime Text) Supports all the languages Komodo Editor supports for Code Intelligence (CIX, CodeIntel2): -JavaScript, Mason, XBL, XUL, RHTML, SCSS, Python, HTML, Ruby, Python3, XML, Sass, XSLT, Django, HTML5, Perl, CSS, Twig, Less, Smarty, Node.js, Tcl, TemplateToolkit, PHP. +ActionScript, Django, Docker, EJS, epMojo, HTML, KomodoSnippet, LaravelBlade, +Mason, Mustache, MXML, PHP, R, reStructuredText, RHTML, Smarty, TracWiki, +TemplateToolkit, Twig, XBL, XML, XSLT, XUL, +Python, Python3, Ruby, Perl, Go, JavaScript, Node.js, CSS, SCSS, Sass, Less, +HTML5, Tcl. Provides the following features: @@ -60,27 +65,14 @@ Provides the following features: -Notes ------ - -** Restart Sublime Text after reading this ** +Release Notes +------------- - -More information ----------------- Please take the time to read the documentation: -In case of trouble, please read the Troubleshooting section in the README. - * Online - http://sublimecodeintel.github.io/SublimeCodeIntel/ * Git - https://github.com/SublimeCodeIntel/SublimeCodeIntel +In case of trouble, please read the Troubleshooting section in the README. -IMPORTANT ---------- - -Do NOT edit the default SublimeCodeIntel settings. Your changes will be lost -when SublimeCodeIntel is updated. ALWAYS edit the user SublimeCodeIntel settings -by selecting "Preferences->Package Settings->SublimeCodeIntel->Settings - User". -Note that individual settings you include in your user settings will **completely** -replace the corresponding default setting, so you must provide that setting in its entirety. +** Restart Sublime Text after reading all this **