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

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

报告相同问题?

悬赏问题

  • ¥15 远程桌面文档内容复制粘贴,格式会变化
  • ¥15 关于#java#的问题:找一份能快速看完mooc视频的代码
  • ¥15 这种微信登录授权 谁可以做啊
  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题