将光标放入来自sublime文本搜索的找到结果中

时间:2014-11-29 06:07:04

标签: sublimetext2 sublimetext

我想将光标放在我找到的所有搜索结果中,因为我想为所选文本结果插入文本手册。例如

array(
        'id'          => 'g_arch_layout',
        'label'       => 'Select Layout For Gallery Archive Page',
        'desc'        => 'You could select your custom layout for gallery archive page!',
        'std'         => '',
        'type'        => 'select',
        'section'     => 'gallery_settings',
        'rows'        => '',
        'post_type'   => '',
        'taxonomy'    => '',
        'min_max_step'=> '',
        'class'       => '',
        'condition'   => '',
        'operator'    => '',
        'choices'     => array( 
          array(
            'value'       => '2col_layout',
            'label'       => '2Column Layout',
            'src'         => ''
          ),
          array(
            'value'       => 'filter_layout',
            'label'       => 'Filter Layout',
            'src'         => ''
          )
        )
      ),
      array(
        'id'          => 'sb_layout',
        'label'       => 'Sidebar Layout For all',
        'desc'        => 'This will effect for all of the pages, post, custom post type and all other pages',
        'std'         => '',
        'type'        => 'select',
        'section'     => 'sidebar_settings',
        'rows'        => '',
        'post_type'   => '',
        'taxonomy'    => '',
        'min_max_step'=> '',
        'class'       => '',
        'condition'   => '',
        'operator'    => '',
        'choices'     => array( 
          array(
            'value'       => 'right_sb',
            'label'       => 'Right Sidebar Single',
            'src'         => ''
          ),
          array(
            'value'       => 'no_sb',
            'label'       => 'Fullwidth Single',
            'src'         => ''
          ),
          array(
            'value'       => 'left_sb',
            'label'       => 'Left Sidebar Single',
            'src'         => ''
          )
        )
      ),
      array(
        'id'          => 'sb_page_layout',
        'label'       => 'Sidebar Layout For Pages',
        'desc'        => 'You could customize sidebar Layout for All Pages on the site! It will effect all the pages',
        'std'         => '',
        'type'        => 'select',
        'section'     => 'sidebar_settings',
        'rows'        => '',
        'post_type'   => '',
        'taxonomy'    => '',
        'min_max_step'=> '',
        'class'       => '',
        'condition'   => '',
        'operator'    => '',
        'choices'     => array( 
          array(
            'value'       => 'right_sb',
            'label'       => 'Right Sidebar Page',
            'src'         => ''
          ),
          array(
            'value'       => 'no_sb',
            'label'       => 'Fullwidth Page',
            'src'         => ''
          ),
          array(
            'value'       => 'left_sb',
            'label'       => 'Left Sidebar Page',
            'src'         => ''
          )
        )
      ),

例如,我想搜索并选择'desc'=> '都来自这种多阵列。所以我的问题是,是否可能查找和选择查找和放置游标?如您所知,sublime同时具有多种代码行类型,其中一种是工作,我们可以编辑。我的崇高文本是版本2

0 个答案:

没有答案