How to insert symbols like em dash, ® or ™ in refinerycms - ruby-on-rails-3

I'm trying to figure out how to add the ability to add symbols like an em dash, ® or ™ in the wymeditor in refinerycms. Looking at the boot_wym.js.erb there doesn't appear to be an option to enable it in the menu. Does anyone know if it is possible and how you would do it?

Ugly hack:
https://groups.google.com/forum/?fromgroups#!topic/refinery-cms/xiQfYNuWLOs

Related

How to select text between tags in Adobe Brackets?

How to select text between tags in Adobe Brackets like Cmd+Shift+A in Sublime Text?
I believe this command is not done yet. Check out https://github.com/adobe/brackets/wiki/Brackets-Shortcuts for available commands & https://github.com/adobe/brackets/wiki/Working-with-Multiple-Selections for some selection commands.
You can also goto Help> Suggest a Feature and suggest this. It does sound like a nice feature, would be good to have.

Google Custom Search in Cyrillic

I need some help with Cyrillic support. First, I do not know if it is possible but here it is what I want to do:
When typing in Google Custom Search is it possible letters to be changed automatically in Cyrillic characters? This actually should "replace" Alt+Shift function, so that user should not change his keyboard language and then start searching, but as he typing in the search letters should convert instantly.
Right now I am using "onkeyup="this.form.s.value=toCyr(this.form.s.value)" for my website and I was wondering if something similar could be done with Google Custom Search.
I don't know about replace , but google does have Phonetic typing which could be vary helpful http://www.google.com/inputtools/try/

Disable IntelliJ / RubyMine Spellchecking for Filenames?

I may be way off base here, but RubyMine appears to be spellchecking my filenames:
Problem is, I have spellchecking turned off.
This occurs for some directory names as well, including simple names like "views".
How do I disable this?
It's not spellchecking, such underline indicates that there are errors inside this file.

Allow typing of non English Characters in text box

In VB.NET, I want to allow typing of non English Characters (For example, Russian, Turkish) in text box. How can I achieve this? Please let me know.
I believe richtextbox allows for that. You're talking about accents and umlauts right?
If so, I'm pretty sure if you just resize your richtextbox down to the size of your textbox then you'll be alright.
If that doesn't work try importing a language pack resource. Use MSDN for specific ones.
Hope that helped

Tool to Surround or Wrap Highlighted Text

StackOverflow's WYSIWYG has the ability to quickly surround highlighted text through keyboard shortcuts.
For example, when I push Ctrl+B on some highlighted text, it would bold the text or surround it with two stars.
I am looking for a tool that will give me this function but with "custom-input". That is... instead of bolding the word, I could surround it with a <div> tag or... in my case, I need to localize my Wordpress Plug-in, thus __("Surrounded Text").
I am currently using Notepad++ but I can't find any way to create this function.
Can this be done in Notepad++?
If it can not, I would like some suggestion for a IDE that can.
Thank you.
If you've never used an "optimized" text editor, Vim would be a sea change, but it does have a great surround.vim plugin.
Emphasize hello: ysiw<em>
<em>Hello</em> world!
Finally, let's try out visual mode.
Press a capital V (for linewise visual
mode) followed by S<p
class="important">.
<p class="important">
<em>Hello</em>> world!
</p>
Alternatively, you could probably get a fair bit of the functionality for which you are looking with an AutoHotkey script, but at best I think you'd have to do the highlight-first thing like the StackOverflow WYSIWYG editor.
Still, this would probably allow you to keep using Notepad++.
You can do this in VIM using the surround plugin