Tag: 自定义

在MySql Workbench中自定义键盘快捷键

花了多年的时间主要与MS SQL Server(以及SQL Server Management Studio的常见任务)一起工作,现在我开始使用MySql。 到目前为止,我一直在使用MySQL Workbench ,我一般对此感到满意。 但是,我想要为某些命令(例如,来自该列表的命令)分配自定义键盘快捷键 。 例如,我宁愿坚持'F5'的MS-SQL方法来执行查询,而不是按'修改器+返回'。 我还没有遇到一个简单的方法来做到这一点。 我的问题是: 这在MySQL Workbench中可能以某种方式(例如,额外的插件)? 如果没有,MySQL Workbench的其他select是否提供这种function? 环境: Ubuntu 12.04 LTS,32位 MySQL服务器版本5.5.24-0ubuntu0.12.04.1 MySQL工作台版本5.2.38,修订版8753 干杯!

自定义Chrome开发人员工具JavaScriptdebugging器键盘快捷键?

我不能相信,谷歌或search引擎search都没有给出明确的答案或甚至是很多的讨论,但是: 是否可以在Google Chrome JavaScriptdebugging器中编辑/自定义键盘快捷键? 如果是的话,怎么样? 我已经习惯了Eclipse的F5 / F6 / F7 / F8debugging器步入/结束/结束/恢复键,并且需要Google Chrome中的相同绑定。 F10 / F11是OSX的默认曝光键,因此不适合debugging器控制。 我打开非正统的解决scheme,例如Quicksilver / AppleScript。 相关但不是很有帮助的页面: Google Chrome的Javascript控制台键盘快捷键 Chrome键盘快捷键文档

我可以在VIM中使用SPACE作为mapleader吗?

从http://items.sjbach.com/319/configuring-vim-right我得到,你应该能够使用空间作为在vim mapleader。 我试过了,但似乎没有工作。 任何人谁使它的工作? 尝试: let mapleader = <space>

如何把我的自定义emacs主题作为一个“安全的主题”?

我是Emacs的新手。 所以,我正在使用emacs 24和solarized颜色主题。 当Emacs启动时,它提示我“加载一个主题可以运行Lisp代码,真正加载?”。 当我回答“是”时,它继续“在未来的会议中将此主题视为安全”。 如果我说“Y”,主题得到加载,并 (custom-set-variables (custome-safe-themes (quote ("…" default)))) 被自动添加到〜/ .emacs。 但是,每次打开Emacs,这些问题都会回来! 什么是正确的方法来closures这些?

Android切换button的自定义外观

我一直在尝试自定义切换button的外观,但没有成功。 以下是我想要的样子: 有人可以给我一个教程吗?

Android ActionBar自定义search视图

—解决了问题 – 在编辑文本中添加了答案— 我在我的Android应用程序中使用了ActionBar Sherlock。 在那里我想显示一个SearchView 。 它迄今为止工作得很好,但我意识到,我试图定制它时做错了什么。 我这样创build它: searchView.setQueryHint("Search: "); searchView.setOnQueryTextListener(this); searchView.setOnCloseListener(…); searchMenuItem = menu.add("Search place"); searchMenuItem.setIcon(R.drawable.ic_action_search) .setActionView(searchView) .setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM | MenuItem.SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW); 我想做两件事情: 更改出现的文本字段中显示的文本“search”的颜色。 它看起来像我的主题中的整体文字样式,但我希望我可以设置一个单独的颜色。 当打开这个search查看时,它会出现在操作栏的左侧。 但我需要在右边。 图标(放大镜)实际上是在酒吧的右侧,但按下它打开左侧的EditTextfield。 我试图使用LayoutParams,但是我试图通过使用LayoutParams将其添加到操作栏时丢失了一些重要的东西。 所以希望有人可以帮助我。 非常感谢你,托比亚斯 —-编辑—- 好的,有一件事已经解决了。 通过XML添加ActionBar使TextEdit向右。 getSupportMenuInflater().inflate(R.menu.activity_main, menu); MenuItem searchItem = menu.findItem(R.id.action_search); SearchView searchView = (SearchView) searchItem.getActionView(); Log.e(TAG, "searchView: " + searchView); 并在我的菜单 <item android:id="@+id/action_search" android:title="Search" android:icon="@drawable/ic_action_search" […]

Android使用buttonselect器的图层列表

我们如何使用图层列表作为button的绘图。 我有一个button: <item android:state_pressed="true"> <shape> <gradient android:endColor="@color/white" android:startColor="@color/grey_blue_light" android:angle="90" /> <stroke android:width="1dp" android:color="@color/aqua_blue" /> <corners android:radius="3dp" /> <padding android:left="10dp" android:top="10dp" android:right="10dp" android:bottom="10dp" /> </shape> </item> <item android:state_focused="true"> </item> <item> </item> 现在,当按下button状态时,我需要一个图层列表作为形状: <?xml version="1.0" encoding="UTF-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:shape="oval"> <solid android:color="@color/aqua_blue" /> </shape> </item> <item android:top="1dp" android:left="1dp" android:right="1dp" android:bottom="1dp"> <shape android:shape="oval"> <solid android:color="@color/aqua_blue" /> </shape> […]

Vim:在空白行上input插入模式时,智能缩进?

当我打开一个新行(通过“o”)时,我的光标跳到下一行正确缩进的位置。 另一方面,当我的光标位于空白行时,进入插入模式不会将光标移动到正确缩进的位置。 在空白行input插入模式(通过i)时,如何使vim正确缩进光标?

是否有一个“正确”的方式让NSTextFieldCell绘制垂直居中文本?

我有一个NSTableView与几个文本列。 默认情况下,这些列的dataCell是Apple的NSTextFieldCell类的一个实例,它完成各种奇妙的事情,但它绘制与单元格顶部alignment的文本,我希望文本在单元格中垂直居中。 在NSTextFieldCell中有一个内部标志,可以用来垂直居中文本,而且工作起来非常漂亮。 然而,由于它是一个内部的标志,它的使用不受苹果的批准,它可能会在未来的版本中没有任何警告地消失。 我目前正在使用这个内部标志,因为它简单而有效。 苹果显然花了一些时间来实现这个function,所以我不喜欢重新实现它的想法。 所以; 我的问题是这样的: 什么是正确的方式来实现一些行为完全像苹果的NStextFieldCell,但绘制垂直居中文本,而不是顶端alignment? 为了logging,这里是我目前的“解决scheme”: @interface NSTextFieldCell (MyCategories) – (void)setVerticalCentering:(BOOL)centerVertical; @end @implementation NSTextFieldCell (MyCategories) – (void)setVerticalCentering:(BOOL)centerVertical { @try { _cFlags.vCentered = centerVertical ? 1 : 0; } @catch(…) { NSLog(@"*** unable to set vertical centering"); } } @end 用法如下: [[myTableColumn dataCell] setVerticalCentering:YES];

Androidanimation旋转

我做了一些挖掘Android代码,并看到在不确定的进度条中的使用。 尝试使用此标记创build我自己的绘图后: <animated-rotate xmlns:android="http://schemas.android.com/apk/res/android" android:drawable="@drawable/spinner_pia" android:pivotX="50%" android:pivotY="50%" android:framesCount="12" android:frameDuration="100" /> 我得到一个错误:“包'android'中找不到属性'frameDuration'的资源标识符 – 这意味着frameDuration是一个私有属性。 有没有办法使用这个“animation旋转”function? 我的任务是replace系统的默认不确定进度条。 我希望尽可能使用尽可能less的代码(如果可能,只需更改一些属性)。 使用ProgressBar视图,设置: android:indeterminateOnly="true" android:indeterminateBehavior="cycle" android:indeterminateDuration="3500" android:indeterminateDrawable="@drawable/pia_sivuvator" 并指向“@ drawable / pia_sivuvator”这个对象将使我的任务,如他们来,但我坚持这些私人属性。 帮帮我?