Enable code-folding by default

前端 未结 7 1904
小鲜肉
小鲜肉 2020-12-23 13:38

Is there a way to tell XCode fold methods/functions by default when opening a file?

相关标签:
7条回答
  • 2020-12-23 13:53

    For the sake of completeness,

    Fold All        ⌘⌥⇧←    command+option+shift+left
    
    0 讨论(0)
  • 2020-12-23 13:54

    If you want to fold / unfold specific blocks of code, since Xcode 7, you have to enable that.

    Go to Xcode > Preferences > Text Editing > and check 'Code folding ribbon'.

    (No idea why they disabled this useful feature by default.)

    0 讨论(0)
  • 2020-12-23 13:58

    The correct answer is in some of the comments (not in any of the answers, I don't think...

    incidentally, the shortcut keys for this are here:

    Picture of shortcut keys in Xcode for collapsing and expanding code

    Judging from past answers, this must have changed over time. This is from Xcode 6.1.1.

    0 讨论(0)
  • 2020-12-23 13:59

    Not sure if this is an OS change, or an Xcode change, but on Lion with Xcode 4, some of these commands cited by Griffo are performed with the Option modifier (the ⌥ key), not control. I've made some changes to reflect this:

    Fold                       ⌥⌘←      option+command+left
    Unfold                      ⌥⌘→      option+command+right
    Unfold All                  ⌥U        option+U
    Fold Methods/Functions      ⌥⌘↑      option+command+up
    Unfold Methods/Functions    ⌥⌘↓      option+command+down
    

    Sorry to necro a thread, but I thought this was worthwhile to revise.

    0 讨论(0)
  • 2020-12-23 14:01

    I don't think so, there are some handy keyboard shortcuts though:

    Fold                        ⌃⌘←      control+command+left
    Fold All                    ⌘⌥⇧←     command+option+shift+left
    Unfold                      ⌃⌘→      control+command+right
    Unfold All                  ⌃U       control+U
    Fold Methods/Functions      ⌃⌘↑      control+command+up
    Unfold Methods/Functions    ⌃⌘↓      control+command+down
    Fold Comment Blocks         ⌃⇧⌘↑     control+shift+command+up
    Unfold Comment Blocks       ⌃⇧⌘↓     control+shift+command+down
    Focus Follows Selection     ⌃⌥⌘F     control+option+command+F
    
    0 讨论(0)
  • 2020-12-23 14:02

    Updates in Xcode 10:

    Xcode 10 has increased support for code folding, including:

    1. A new code folding ribbon showing all of the multi-line foldable blocks of code in the editor
    2. A new style for folded code in the editor that allows you to edit lines with folded code
    3. Support for folding any block of code enclosed in curly braces
    4. Support for folding blocks of code from the folding ribbon, from structured selection, or from the

    Menubar ► Editor ► Code Folding ► Fold menu item

    Look at this snapshot:


    Code folding was disabled in Xcode 9 beta 1, which is working now, in Xcode 9 Beta5 according to beta release note: Resolved in Xcode 9 beta 5 – IDE

    Here is how:

    1. Press and hold (command) button in keyboard and move/hover mouse cursor on any (start or end) braces. It will automatically highlight, block area.
    2. Keep (hold) (command) button in pressed condition and click on highlighted area. It will enable quick menu popover window with Fold option.
    3. Select Fold from menu list. It will fold your code and shows 3 dots, folding/covering entire block.
    4. Now, to again unfold your code block, release (command) button and click on 3 dots folding a block.

    For easy understanding, look at this snapshot:

    enter image description here


    It's all keyboard short cuts are also working.

    Fold                          ⌥ ⌘ ←      option + command + left arrow
    Unfold                        ⌥ ⌘ →      option + command + right arrow
    Unfold All                    ⌥ U        option + U
    Fold Methods & Functions      ⌥ ⌘ ↑      option + command + up arrow
    Unfold Methods & Functions    ⌥ ⌘ ↓      option + command + down arrow
    Fold Comment Blocks           ⌃ ⇧ ⌘ ↑    control + shift + command + up
    Unfold Comment Blocks         ⌃ ⇧ ⌘ ↓    control + shift + command + down
    Focus Follows Selection       ⌃ ⌥ ⌘ F    control + option + command + F
    Fold All                      ⌘ ⌥ ⇧ ←    command + option + shift + left
    Unfold All                    ⌘ ⌥ ⇧ →    command + option + shift + left
    


    Code folding options from Xcode Menu:

    Menubar ▶ Editor ▶ Code Folding ▶ "Here is list of code folding options"

    Here is ref snapshot:

    enter image description here

    Same options from Xcode Short-cut list:

    Menubar ▶ Xcode ▶ Preferences ▶ Key Bindings ▶ "Here is list of code folding short-keys"

    enter image description here

    0 讨论(0)
提交回复
热议问题