dongzhabo2796 2016-04-22 17:50
浏览 160
已采纳

Sublime Text自动完成功能,括号中是否有变量?

If I already have this written

$company_id = isset($_POST['cid']) ? $_POST['cid'] : null;

And I want to wrap a function call around $_POST['cid'], is there a way to put that inside the autocompleted function's parentheses?

Instead of me typing this:

$company_id = isset($_POST['cid']) ? Validate::isId()$_POST['cid'] : null;

and then having to erase the right parenthesis, is there a shortcut to wrap the param when sublime autocompletes the function for me?

$company_id = isset($_POST['cid']) ? Validate::isId($_POST['cid']) : null;

Using Mac Yosemite and SublimeText 3.

  • 写回答

1条回答 默认 最新

  • drt41563 2016-04-22 20:57
    关注

    You can create a custom snippet that accepts a SELECTION argument:

    SnippetDemo


    Save The Code Below @:

    Packages/___Your_Snippet_Folder___/SnippetName.sublime-snippet

     

    <snippet>
    
    <tabTrigger>testFunction()</tabTrigger>
    <description>testFunction</description>
    
    <scope>source.php</scope>
    
    <content>
    testFunction(${1:$SELECTION}, ${2:PlaceHolder_2})
    </content>
    
    </snippet>
    

    The use of placeholders, for example: ${1:placeholder_text_goes_here} , allows you to assign descriptive pre-selected regions throughout your snippet that can be navigated with <kbd>Tab</kbd> & <kbd>Shift + Tab</kbd>


    Additionally, you can replace one of the placeholders with $SELECTION, for example: ${1:$SELECTION} , which will pass the currently selected text as an argument if you execute the snippet from the command palette or a key-binding.


    To insert the snippet:

    • select the text to be passed as the $SELECTION argument
    • use <kbd>Ctrl + Shift + P</kbd> to launch the command palette
    • type Snippet: followed by the value of the <description> key in your sublime-snippet file

    For more information on snippets, see:

    SublimeText / Unofficial Docs / Snippets

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

    报告相同问题?

    悬赏问题

    • ¥20 powerbulider 导入excel文件,显示不完整
    • ¥30 单片机实验pc软件完全,可以私我商议
    • ¥15 用keil调试程序保证结果进行led相关闪烁
    • ¥15 paddle训练自己的数据loss降不下去
    • ¥20 用matlab的pdetool解决以下三个问题
    • ¥15 单个福来轮的平衡与侧向滑动是如何做到的?
    • ¥15 嵌入式Linux固件,能直接告诉我crc32校验的区域在哪不,内核的校验我已经找到了,uboot没有
    • ¥20 h3c静态路要求有详细过程
    • ¥15 调制识别中输入为时频图,星座图,眼图等
    • ¥15 数据结构C++的循环、随机数问题