Plugin Directory

Changeset 739200


Ignore:
Timestamp:
07/11/2013 01:47:59 PM (13 years ago)
Author:
rewish
Message:

WP Emmet 0.2.2 Released

Location:
wp-emmet/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-emmet/trunk/WP/Emmet.php

    r738398 r739200  
    122122     */
    123123    public function applyScripts() {
    124         $shortcuts = $this->Options->get('shortcuts');
     124        $shortcuts = $this->Options->get('shortcuts', true);
    125125        $type = $this->editorType();
    126126        require_once WP_EMMET_VIEW_DIR . DIRECTORY_SEPARATOR . "apply_for_{$type}.php";
  • wp-emmet/trunk/WP/Emmet/Options.php

    r737277 r739200  
    3838    public function load() {
    3939        return array_merge(array(
    40             'use_codemirror' => '1',
     40            'use_codemirror' => '0',
    4141
    4242            'profile' => 'html',
     
    251251        foreach ($options['shortcuts'] as $type => $shortcutKey) {
    252252            $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'),
    255255                $shortcutKey
    256256            );
  • wp-emmet/trunk/readme.txt

    r738538 r739200  
    2828== Changelog ==
    2929
     30= 0.2.2 =
     31* Fix a bug of shortcuts that occurs when `enable` the Code coloring
     32
    3033= 0.2.1 =
    3134* Fix localization doesn't works
     
    4447= 0.1 =
    4548* Initial release
    46 
  • wp-emmet/trunk/wp-emmet.php

    r738538 r739200  
    44Plugin URI: https://github.com/rewish/wp-emmet
    55Description: Emmet (ex-Zen Coding) for WordPress.
    6 Version: 0.2.1
     6Version: 0.2.2
    77Author: rewish
    88Author URI: https://github.com/rewish
     
    1717
    1818$wp_emmet = new WP_Emmet();
    19 
Note: See TracChangeset for help on using the changeset viewer.