Changeset 739200
- Timestamp:
- 07/11/2013 01:47:59 PM (13 years ago)
- Location:
- wp-emmet/trunk
- Files:
-
- 4 edited
-
WP/Emmet.php (modified) (1 diff)
-
WP/Emmet/Options.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-emmet.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-emmet/trunk/WP/Emmet.php
r738398 r739200 122 122 */ 123 123 public function applyScripts() { 124 $shortcuts = $this->Options->get('shortcuts' );124 $shortcuts = $this->Options->get('shortcuts', true); 125 125 $type = $this->editorType(); 126 126 require_once WP_EMMET_VIEW_DIR . DIRECTORY_SEPARATOR . "apply_for_{$type}.php"; -
wp-emmet/trunk/WP/Emmet/Options.php
r737277 r739200 38 38 public function load() { 39 39 return array_merge(array( 40 'use_codemirror' => ' 1',40 'use_codemirror' => '0', 41 41 42 42 'profile' => 'html', … … 251 251 foreach ($options['shortcuts'] as $type => $shortcutKey) { 252 252 $options['shortcuts'][$type] = str_replace( 253 array('+', 'Meta', 'Cmd-Shift' ),254 array('-', 'Cmd', 'Shift-Cmd' ),253 array('+', 'Meta', 'Cmd-Shift', 'Alt-Cmd', 'Alt-Shift'), 254 array('-', 'Cmd', 'Shift-Cmd', 'Cmd-Alt', 'Shift-Alt'), 255 255 $shortcutKey 256 256 ); -
wp-emmet/trunk/readme.txt
r738538 r739200 28 28 == Changelog == 29 29 30 = 0.2.2 = 31 * Fix a bug of shortcuts that occurs when `enable` the Code coloring 32 30 33 = 0.2.1 = 31 34 * Fix localization doesn't works … … 44 47 = 0.1 = 45 48 * Initial release 46 -
wp-emmet/trunk/wp-emmet.php
r738538 r739200 4 4 Plugin URI: https://github.com/rewish/wp-emmet 5 5 Description: Emmet (ex-Zen Coding) for WordPress. 6 Version: 0.2. 16 Version: 0.2.2 7 7 Author: rewish 8 8 Author URI: https://github.com/rewish … … 17 17 18 18 $wp_emmet = new WP_Emmet(); 19
Note: See TracChangeset
for help on using the changeset viewer.