This is a Chinese version of https://gist.github.com/1207002/86f48cd3b3b72c85e6293926cf7c730de03b2f08 from lucasfais
| ⌘T | 前往文件 |
| ⌘⌃P | 前往项目 |
| ⌘R | 前往 method |
| ⌘⇧P | 命令提示 |
| //Place this inside ~/Library/Application Support/Sublime Text/Packages/ | |
| //This is for SQL, so the file type of the new file must be .sql. | |
| //You might need to add this if autocomplete doesn't appear | |
| //Put in ~/Library/Application Support/Sublime Text/Packages/user/Preferences.sublime-settings | |
| //{ | |
| // "auto_complete_selector": "source, text" | |
| //} |
| /* | |
| * Copyright 2014 Chris Banes | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| Regex for matching ALL Japanese common & uncommon Kanji (4e00 – 9fcf) ~ The Big Kahuna! | |
| ([一-龯]) | |
| Regex for matching Hirgana or Katakana (*) | |
| ([ぁ-んァ-ン]) | |
| Regex for matching Non-Hirgana or Non-Katakana | |
| ([^ぁ-んァ-ン]) | |
| Regex for matching Hirgana or Katakana or basic punctuation (、。’) |
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="hzqtc.flowlayout" | |
| android:versionCode="1" | |
| android:versionName="1.0"> | |
| <uses-sdk | |
| android:minSdkVersion="14" | |
| android:targetSdkVersion="19"/> |
| task('increaseVersionCode') << { | |
| def manifestFile = file("src/main/AndroidManifest.xml") | |
| def pattern = Pattern.compile("versionCode=\"(\\d+)\"") | |
| def manifestText = manifestFile.getText() | |
| def matcher = pattern.matcher(manifestText) | |
| matcher.find() | |
| def versionCode = Integer.parseInt(matcher.group(1)) | |
| android.defaultConfig.versionCode = versionCode + 1 | |
| println "Setting version code to ${android.defaultConfig.versionCode}" | |
| def manifestContent = matcher.replaceAll("versionCode=\"" + android.defaultConfig.versionCode + "\"") |
| /* Copyright 2013 Google Inc. | |
| Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0.html */ | |
| package com.example.latlnginterpolation; | |
| import android.animation.ObjectAnimator; | |
| import android.animation.TypeEvaluator; | |
| import android.animation.ValueAnimator; | |
| import android.annotation.TargetApi; | |
| import android.os.Build; |
This is a Chinese version of https://gist.github.com/1207002/86f48cd3b3b72c85e6293926cf7c730de03b2f08 from lucasfais
| ⌘T | 前往文件 |
| ⌘⌃P | 前往项目 |
| ⌘R | 前往 method |
| ⌘⇧P | 命令提示 |