Turn: zend studio 9 font, color, shortcut key, and other related settings

Source: Internet
Author: User

Since zend has a new version of studio, zend studio 9 has been installed to feel it quickly. Zend studio has never been better than dreamweaver. It may be the concept of preemptible. I changed the zend studio8 code coloring style to the DW style, haha. Now zs9 has been installed. Fix it from scratch and make some modifications. This is a special record.

1. Modify the font

I didn't expect zend studio 9 to show little Chinese characters. It seems a little small. Modify the settings as follows: open Window> Preferences> General> Appearance> Colors and Fonts and find Basic> Text Font. To Use the default System Font, click Use System Font, I know that you do not seem willing to use the default font of the system, so click Edit to select the font you want.

At this time, win7 users may encounter a situation (XP does not know, other systems do not know), found that the font list, there is no desired font, it is clear that the system has more than N fonts, A small part is displayed here. In this case, you can click "show more fonts" to open the system font folder and find the desired font. It should be a hidden property, right-click it, and click "show. Click "OK"> "apply"> "OK.

I prefer Courier New as the font for code editing.

2. Modify the font color

Currently, zend studio's PHP code coloring solution is not very good, especially if the keywords are not highlighted, and the modification method is very simple. Window-> Preferences-> PHP-> Editor-> Syntax Coloring. Modify the corresponding color. The following provides a dreamweaver-like coloring scheme for your reference only.

Chinese English HEX RGB
Variable Variable # 0066FF 0,102,255
String String # CC0000 0, 12, 0
Constant/internal constant Constants/internal constants #552200 85,34, 0
Number Number # FF0000 255, 0, 0
Reserved keywords Keyword #006600 0,102, 0
Block Separator PHP tags # FF0000 255, 0, 0
Note PHPDoc comment # FF9900 255,135, 0
Note PHPDoc # FF4400 255, 68, 0
Single/multi-line comment Single/Multi-line comment # FF9900 255,135, 0

3. Shortcut Keys

This part is derived from the Internet and can be compared with Window-> Preferences-> General-> Keys.

CTRL + B | refactor the project
CTRL + D | delete a row
CTRL + E | search for opened file names
CTRL + F | open this file search/replace, only search for the current file
CTRL + H | open the search and replacement window to search for the entire disk and Working Set
CTRL + K | find the next
CTRL + SHIFT + K | find the previous one
CTRL + L | move to a certain row of the file
CTRL + M | maximize/restore the current editing window
CTRL + N | create
CTRL + O | quick outline, which lists all variables and methods in a file and is useful for reading class files.
CTRL + P | print
CTRL + W | close the opened file

CTRL + number key/| you can collapse or expand the code segment
CTRL +/| comment on a single row
CTRL + BACKSPACE | Delete the word before the cursor. The definition of this word is understood by ZEND. For example, if it is a symbol before, delete a symbol. If it is a word before, delete a word.
CTRL + SHIFT +/| select a code block and press the combination key to comment out the code block
CTRL + SHIFT + \ | cancel block comment
Tab/Shift + Tab | increase/decrease code indentation
ALT + ENTER | view the attributes of the current document
CTRL + SHIFT + F | to quickly format the code style, you can select the ZF code format (PS How to set the format, you can choose "Preferences"> "code style"> "formatting program)
ALTER +-> or <-| forward or backward in the edited position
CTRL + SHIFT + L | display the list of all shortcut keys (called "Beginner's key ")
CTRL + F12 | open the task (| PS: The task defines a specific working set. If you want to complete a registration module, there are three files in config. phpregister. class. php register. php | you can save these files as a task register. You only need to open register to open these three files at the same time. |)
CTRL + F9 | activate the task
CTRL + SHIFT + F9 | cancel the task
F11 | debug the current file
CTRL + F11 | run
F3 | open declaration, available in Working Set
SHIFT + F2 | open the PHP manual help and view the function details

CTRL + HOME or CTRL + END | move the cursor to the file header or to the END of the file
SHIFT + HOME or SHIFT + END | select the text from the cursor to the beginning or END of the line
CTRL + SHIFT + M | Name of the Search Method

Zend Studio debugging shortcut

F9 | Add/delete all code parts of a breakpoint
F10 | process by process. Execute the debugging file in one step to the next line
F5 | start execution. Execute the debugging file until a breakpoint occurs.
F8 | debug URL. Open the debug URL dialog box
F12 | URL of the profile. Open profile URL dialog box
Shift + F8 | add monitoring points. Open the Add monitoring point dialog box
Shift + F11 | jump out. The first line after the result is returned after one-step execution.
F11 | Statement by statement. One-step execution to the next row to be executed
Shift + F10 | execute to the cursor line. Execute the code to the row where the cursor is located.
Ctrl + F5 | execution script without interruption
Shift + F5 | stop the debugger
Ctrl + Alt + B | displayed in the browser

Since zend has a new version of studio, zend studio 9 has been installed to feel it quickly. Zend studio has never been better than dreamweaver. It may be the concept of preemptible. I changed the zend studio8 code coloring style to the DW style, haha. Now zs9 has been installed. Fix it from scratch and make some modifications. This is a special record.

1. Modify the font

I didn't expect zend studio 9 to show little Chinese characters. It seems a little small. Modify the settings as follows: open Window> Preferences> General> Appearance> Colors and Fonts and find Basic> Text Font. To Use the default System Font, click Use System Font, I know that you do not seem willing to use the default font of the system, so click Edit to select the font you want.

At this time, win7 users may encounter a situation (XP does not know, other systems do not know), found that the font list, there is no desired font, it is clear that the system has more than N fonts, A small part is displayed here. In this case, you can click "show more fonts" to open the system font folder and find the desired font. It should be a hidden property, right-click it, and click "show. Click "OK"> "apply"> "OK.

I prefer Courier New as the font for code editing.

2. Modify the font color

Currently, zend studio's PHP code coloring solution is not very good, especially if the keywords are not highlighted, and the modification method is very simple. Window-> Preferences-> PHP-> Editor-> Syntax Coloring. Modify the corresponding color. The following provides a dreamweaver-like coloring scheme for your reference only.

Chinese English HEX RGB
Variable Variable # 0066FF 0,102,255
String String # CC0000 0, 12, 0
Constant/internal constant Constants/internal constants #552200 85,34, 0
Number Number # FF0000 255, 0, 0
Reserved keywords Keyword #006600 0,102, 0
Block Separator PHP tags # FF0000 255, 0, 0
Note PHPDoc comment # FF9900 255,135, 0
Note PHPDoc # FF4400 255, 68, 0
Single/multi-line comment Single/Multi-line comment # FF9900 255,135, 0

3. Shortcut Keys

This part is derived from the Internet and can be compared with Window-> Preferences-> General-> Keys.

CTRL + B | refactor the project
CTRL + D | delete a row
CTRL + E | search for opened file names
CTRL + F | open this file search/replace, only search for the current file
CTRL + H | open the search and replacement window to search for the entire disk and Working Set
CTRL + K | find the next
CTRL + SHIFT + K | find the previous one
CTRL + L | move to a certain row of the file
CTRL + M | maximize/restore the current editing window
CTRL + N | create
CTRL + O | quick outline, which lists all variables and methods in a file and is useful for reading class files.
CTRL + P | print
CTRL + W | close the opened file

CTRL + number key/| you can collapse or expand the code segment
CTRL +/| comment on a single row
CTRL + BACKSPACE | Delete the word before the cursor. The definition of this word is understood by ZEND. For example, if it is a symbol before, delete a symbol. If it is a word before, delete a word.
CTRL + SHIFT +/| select a code block and press the combination key to comment out the code block
CTRL + SHIFT + \ | cancel block comment
Tab/Shift + Tab | increase/decrease code indentation
ALT + ENTER | view the attributes of the current document
CTRL + SHIFT + F | to quickly format the code style, you can select the ZF code format (PS How to set the format, you can choose "Preferences"> "code style"> "formatting program)
ALTER +-> or <-| forward or backward in the edited position
CTRL + SHIFT + L | display the list of all shortcut keys (called "Beginner's key ")
CTRL + F12 | open the task (| PS: The task defines a specific working set. If you want to complete a registration module, there are three files in config. phpregister. class. php register. php | you can save these files as a task register. You only need to open register to open these three files at the same time. |)
CTRL + F9 | activate the task
CTRL + SHIFT + F9 | cancel the task
F11 | debug the current file
CTRL + F11 | run
F3 | open declaration, available in Working Set
SHIFT + F2 | open the PHP manual help and view the function details

CTRL + HOME or CTRL + END | move the cursor to the file header or to the END of the file
SHIFT + HOME or SHIFT + END | select the text from the cursor to the beginning or END of the line
CTRL + SHIFT + M | Name of the Search Method

Zend Studio debugging shortcut

F9 | Add/delete all code parts of a breakpoint
F10 | process by process. Execute the debugging file in one step to the next line
F5 | start execution. Execute the debugging file until a breakpoint occurs.
F8 | debug URL. Open the debug URL dialog box
F12 | URL of the profile. Open profile URL dialog box
Shift + F8 | add monitoring points. Open the Add monitoring point dialog box
Shift + F11 | jump out. The first line after the result is returned after one-step execution.
F11 | Statement by statement. One-step execution to the next row to be executed
Shift + F10 | execute to the cursor line. Execute the code to the row where the cursor is located.
Ctrl + F5 | execution script without interruption
Shift + F5 | stop the debugger
Ctrl + Alt + B | displayed in the browser

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.