资源简介
智能的sublime插件,提高效率
代码片段和文件信息
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.1 (the “License“); you may not use this file except in
# compliance with the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an “AS IS“
# basis WITHOUT WARRANTY OF ANY KIND either express or implied. See the
# License for the specific language governing rights and limitations
# under the License.
#
# The Original Code is SublimeCodeIntel code.
#
# The Initial Developer of the Original Code is German M. Bravo (Kronuz).
# Portions created by German M. Bravo (Kronuz) are Copyright (C) 2011
# German M. Bravo (Kronuz). All Rights Reserved.
#
# Contributor(s):
# German M. Bravo (Kronuz)
# ActiveState Software Inc
#
# Portions created by ActiveState Software Inc are Copyright (C) 2000-2007
# ActiveState Software Inc. All Rights Reserved.
#
“““
CodeIntel is a plugin intended to display “code intelligence“ information.
The plugin is based in code from the Open Komodo Editor and has a MPL license.
Port by German M. Bravo (Kronuz). May 30 2011
For Manual autocompletion:
User Key Bindings are setup like this:
{ “keys“: [“super+j“] “command“: “code_intel_auto_complete“ }
For “Jump to symbol declaration“:
User Key Bindings are set up like this
{ “keys“: [“super+f3“] “command“: “goto_python_definition“ }
...and User Mouse Bindings as:
{ “button“: “button1“ “modifiers“: [“alt“] “command“: “goto_python_definition“ “press_command“: “drag_select“ }
Configuration files (‘~/.codeintel/config‘ or ‘project_root/.codeintel/config‘). All configurations are optional. Example:
{
“PHP“: {
“php“: ‘/usr/bin/php‘
“phpExtraPaths“: []
“phpConfigFile“: ‘php.ini‘
}
“javascript“: {
“javascriptExtraPaths“: []
}
“Perl“: {
“perl“: “/usr/bin/perl“
“perlExtraPaths“: []
}
“Ruby“: {
“ruby“: “/usr/bin/ruby“
“rubyExtraPaths“: []
}
“Python“: {
“python“: ‘/usr/bin/python‘
“pythonExtraPaths“: []
}
“Python3“: {
“python“: ‘/usr/bin/python3‘
“pythonExtraPaths“: []
}
}
“““
import os
import re
import sys
import stat
import time
import datetime
import collections
import sublime
import sublime_plugin
import threading
import logging
from cStringIO import StringIO
CODEINTEL_HOME_DIR = os.path.expanduser(os.path.join(‘~‘ ‘.codeintel‘))
__file__ = os.path.normpath(os.path.abspath(__file__))
__path__ = os.path.dirname(__file__)
libs_path = os.path.join(__path__ ‘libs‘)
if libs_path not in sys.path:
sys.path.insert(0 libs_path)
from codeintel2.common import *
from codeintel2.manager import Manager
from codeintel2.citadel import CitadelBuffer
from code
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-01-25 15:09 SublimeCodeIntel-master\
目录 0 2013-01-25 15:09 SublimeCodeIntel-master\.codeintel\
文件 167 2013-01-25 15:09 SublimeCodeIntel-master\.codeintel\config
文件 28 2013-01-25 15:09 SublimeCodeIntel-master\.gitignore
文件 1185 2013-01-25 15:09 SublimeCodeIntel-master\ba
文件 86 2013-01-25 15:09 SublimeCodeIntel-master\Context.sublime-menu
文件 288 2013-01-25 15:09 SublimeCodeIntel-master\Default (Linux).sublime-keymap
文件 120 2013-01-25 15:09 SublimeCodeIntel-master\Default (Linux).sublime-mousemap
文件 290 2013-01-25 15:09 SublimeCodeIntel-master\Default (OSX).sublime-keymap
文件 120 2013-01-25 15:09 SublimeCodeIntel-master\Default (OSX).sublime-mousemap
文件 288 2013-01-25 15:09 SublimeCodeIntel-master\Default (Windows).sublime-keymap
文件 120 2013-01-25 15:09 SublimeCodeIntel-master\Default (Windows).sublime-mousemap
文件 1170 2013-01-25 15:09 SublimeCodeIntel-master\Default.sublime-commands
文件 30869 2013-01-25 15:09 SublimeCodeIntel-master\LICENSE.txt
文件 6315 2013-01-25 15:09 SublimeCodeIntel-master\Main.sublime-menu
文件 6159 2013-01-25 15:09 SublimeCodeIntel-master\README.rst
文件 43064 2013-01-25 15:09 SublimeCodeIntel-master\SublimeCodeIntel.py
目录 0 2013-01-25 15:09 SublimeCodeIntel-master\libs\
文件 20997 2013-01-25 15:09 SublimeCodeIntel-master\libs\HTMLTreeParser.py
目录 0 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\
文件 1601 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\CPP.py
文件 2213 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\CSS.py
文件 737 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\DispatchHandler.py
文件 2364 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\HTMLGenerator.py
文件 1715 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\HyperText.py
文件 1570 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\Java.py
文件 1449 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\ja
文件 23122 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\Keywords.py
文件 4175 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\LanguageInfo.py
文件 607 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\Lexer.py
文件 1276 2013-01-25 15:09 SublimeCodeIntel-master\libs\SilverCity\NULL.py
............此处省略380个文件信息
相关资源
- 神经网络原理(S.Haykin)-高清PDF扫描
- 人工智能:复杂问题求解的结构和策
- 加推智能名片产品路演文档揭秘
- 电力系统分析与设计-英文版
- 基于MSP430空气检测原理图设计
- 智能车竞赛双车组省一等奖程序
- “中国法研杯”司法人工智能挑战赛
- iNodecClient智能客户端64位
- 智能药箱论文
- 智能合约Solidity 银行积分+投票 Dapp
- 去中心化应用(Dapp) 和前端页面交互
- Artificial Intelligence:A Modern Approach人工
- 《终极算法:机器学习和人工智能如
- 神经网络实用教程
- 智能燃气表原理图PCB和库文件
- 智能卡技术-IC卡与RFID标签(第三版)
- 基于stm32 NUCLEO-L476的智能灯操作说明
- 智能车资料-信标组.rar
- 智能控制基础
- 计算机视觉--算法与运用中文Richard
- 第13届摄像头fx版3.0-环路100镜头.zip
- 广告弹窗、上拉、list滑动换位、图片
- 基于STM32的智能小车研究 20181125
- Arduino编程指南-75个智能硬件程序设计
- 商务与经济统计原书第13版英文PPT+案
- 三维重建经典论文集
- tensorFlow keras 深度学习 人工智能实践
- 常用的wm系统软件
- h5模型转为.kmodel/.tflite/.pb文件
- iNode智能客户端iOS版 iNode MC 7.3.15 for
评论
共有 条评论