I have multiple plugins in Vim and some of them modify the default behavior of Vim. For example I use Vimacs plugin, which makes Vim behave like emacs in the insert mode alone. Sometime I want to turn off the Vimacs plugin without moving the vimacs.vim out of the plugins directory. Is there a way to do it?
...
Hi,
I am working on Eclipse ide. I want to know how an action done on one plugin can be listened by other plugins so that they can also handle the same event.
Please do reply if you have anything...
...
As a plugin framework developer, I want to specify an interface, myNameSpace.IPlugin, that the plugins must implement. The return value of one of the interface members, IPlugin.GetWidget(), must be of a type derived from System.Windows.Forms.Control and it also must implement myNameSpace.IFoo interface. I also want to allow the plugin d...
Hi guys,
I have built a flex 3 application using Flex Builder. I am then embedding it in a portal application but having problems with installing the Flash Player
When i load up my application in Firefox or IE6 (without Flash installed) i get a message where my flex app should be,
("Additional plugins are required to display all the m...
Are there any freeware plugins that would help me view the HTML Source generated by ASP.NET?
...
I do all my PHP coding in Dreamweaver (currently version CS3) I am used to it and like it. There is one thing I would like though, is to be able to check for errors. Currently I don't see them until I upload the page to a server. Is there anyway to setup PHP error checking in Dreamweaver?
Thanks.
...
I am building a Symfony project, and have created a new plug-in named sfUtilsPlugin. I currently have a directory structure that looks like this:
sfUtilsPlugin/
modules/
sfSearchLucene/
actions/
config/
lib/
templates/
Now, in the sfUtilsPlugin/modules/sfSearchLucene/lib dir...
Sample case:
class Test {
final Set<String> uniqueNames = new HashSet<String>();
}
But w/ the help of a plugin can generate methods like this (similar to Generate getters/setters)
class Test {
final Set<String> uniqueNames = new HashSet<String>();
public boolean add(String name) {
return uniqueNames.add(name);
}...
I'd like to translate the OpenIdAuthentication plugin into another language but I'd like not to change the plugin directly.
Here's the basic structure of the messages I want to translate:
module OpenIdAuthentication
class Result
ERROR_MESSAGES = {
:missing => "Sorry, the OpenID server couldn't be found",
:invali...
We have an open source media center plug-in. At the moment its download size is one measly megabyte.
If I change my plug-in to require .NET 3.5, users may have to download 197 megs just to be able to use my plug-in.
I am in the middle of a big refactoring process, and am aching to use some of the functional aspects of LINQ, which would...
I am writing a plug-in for Trac. I would like to add an event to the time line each time the plug-in receives some data from a Git post-receive hook.
Looking at the timeline API, it seems you can only add new source of events. So you are responsible for retrieving and displaying the data. I would prefer saving my event to an existent so...
Hey guys, first off let me just say Im a jQuery noob! I want to make a simple plugin that auto-populates a html select element, it works fine on the first element but when I call it again to populate a second it appends nothing. Here are my calls in the ajax tab where #product and #new-category are the select elements:
$(function(){
...
How do you "remove" or "copy" an eclipse plugin from one eclipse install to another? E.g. I have two installs of eclipse, one of which has a plugin installed that I don't have an installer for nor is it readily available online. Is it possible to get this plugin installed on my other version of eclipse? If so, how?
Also, does it matt...
Hi,
Where can I find information on adding a toolbar to IE like "Snagit" and other tools does?
What I am basically trying to do is add a button, such that when clicked my tool will be launched.
...
Is there a rails (or other javascript framework) plugin that does the auto suggest like the Related Questions suggestions here in Stack Overflow where after leaving the text field a list of related items shows up?
Also is there a name for this UI patterm?
...
Note: Please don't answer with just use Adobe AIR". I am aware of it, and it's not applicable in this situation.
I've been reviewing the Gecko Plugin API reference.
I'm assuming I'd have to implement all the required browser-side functionality. My goal is to be able to access the graphical output of Flash at a low level, in order to in...
Hi guys,
i have a grails project with an Image Domain Class and Controller.
I just installed the grails ImageTools 1.0.4 Plugin and i would like to generate thumbnails for images wich will be uploaded.
My Image-Domain-Class:
class Image {
byte[] data
//String name
byte[] thumbnail
static constraints = {
//name()
data()
}
}
...
It is trying to load my TabGroup from the Debug Dialog but I get the error that it is unable to load my tab group class.
In the "details" of the error all it says is:
"org/eclipse/debug/ui/AbstractLaunchConfigurationTabGroup"
Which is the class that my TabGroup extends.
...
I often use links with href='#' when calling ajax resources.
I noticed that IE makes an audible "click" when clicking these links.
Here's a workaround:
$("#element")
.click(function(){return false;})
.bind("click", function(){ alert(this); });
HOWEVER, when I try to encapsulate this functionality in a jQuery plugin, I'm not succes...
I want to separate some DLLs from the associated native JNI classes.
Plugins:
In plugin A the dlls are placed and
loaded when the plugin is loaded.
In
plugin B (depend on A) the JNI
classes are placed which include the
native method calls for the DLLs in A.
At runtime i get a UnsatisfiedLinkError because the JNI class can't be foun...