Scite 自动完成任何语言

lua-users home
wiki

这是一个 SciTE 启动脚本,它为任何文件类型提供自动完成功能。它在保存、打开和缓冲区切换时扫描文件以查找标识符,并在自动完成中使用这些标识符。它不使用任何外部文件来列出标识符。

标识符的构成由 IDENTIFIER_PATTERNS 中的模式列表决定。此示例允许标识符包含点(例如,建议整个“object.member.property”字符串)和连字符(例如,“lisp-or-css-identifier”)。

如果您在 SciTE 属性中启用了自动完成,此脚本可能无法正常工作。(可能很容易让它在某些文件类型上禁用自身。)

    -- Dynamically generate autocomplete lists from possible identifiers in any file.

    local IGNORE_CASE = true
    -- Number of chars to type before the autocomplete list appears:
    local MIN_PREFIX_LEN = 3
    -- Length of shortest word to add to the autocomplete list
    local MIN_IDENTIFIER_LEN = 6
    -- A list of string patterns for finding suggestions for the autocomplete menu.
    local IDENTIFIER_PATTERNS = {"[%a_][%w_]+", "[%a_][%w_.]*[%w_]", "[%a_][%w_-]*[%w_]"}


    local names = {}
    local notempty = next


    if IGNORE_CASE then
        normalize = string.lower
    else
        normalize = function(word) return word end
    end


    function buildNames()
        names = {}
        local text = editor:GetText()
        for i, pattern in ipairs(IDENTIFIER_PATTERNS) do
            for word in string.gmatch(text, pattern) do
                if string.len(word) >= MIN_IDENTIFIER_LEN then
                    names[word] = true
                end
            end
        end
    end


    function handleChar()
        if not editor:AutoCActive() then
            editor.AutoCIgnoreCase = IGNORE_CASE            
            local pos = editor.CurrentPos
            local startPos = editor:WordStartPosition(pos, true)
            local len = pos - startPos
            if len >= MIN_PREFIX_LEN then
                local prefix = editor:textrange(startPos, pos)
                local menuItems = {}
                for name, v in pairs(names) do
                    if normalize(string.sub(name, 1, len)) == normalize(prefix) then 
                        table.insert(menuItems, name)
                    end
                end
                if notempty(menuItems) then
                    table.sort(menuItems)
                    editor:AutoCShow(len, table.concat(menuItems, " "))
                end
            end
        end
    end


    -- Event handlers
    OnChar = handleChar
    OnSave       = buildNames
    OnSwitchFile = buildNames
    OnOpen       = buildNames
MartinStone?

不幸的是,如果关键字包含“.”之类的字符,AutoCShow() 函数似乎无法正常工作。


最近更改 · 偏好设置
编辑 · 历史记录
最后编辑于 2011 年 5 月 11 日下午 4:46 GMT (差异)