Questions tagged [plugins]

A plug-in (or plugin) is a set of software components that adds specific abilities to a larger software application. If supported, plug-ins enable customizing the functionality of an application.

A plug-in (or plugin) is a set of software components that adds specific abilities to a larger software application. If supported, plug-ins enable customizing the functionality of an application.

See also:

25574 questions
5
votes
2 answers

How to use Nuxt $auth inside an axios plugin (How to add Token to all axios requests)

Im looking to use $auth inside my Nuxt project, specially inside an axios plugin. Here is my code: plugins/api.js export default function ({ $axios }, inject) { const api = $axios.create({ headers: { common: { Accept:…
Herii
  • 422
  • 5
  • 23
5
votes
2 answers

Unable to open file for reading on All-in-One Migration on wordpress after searching for solutions

After I searched solutions: maximize upload file: https://help.servmask.com/2018/10/27/how-to-increase-maximum-upload-file-size-in-wordpress/ From reading this: https://wordpress.org/support/topic/unable-to-open-file-for-reading-5/, but not found…
5
votes
1 answer

Wordpress plugin development, symlink not working

It used to works before maybe a year ago. now i'm trying to build new plugin using symlink. but wordpress not detecting that symlinked plugin. i tried ln -s /plugin-source/ /site/wp-content/plugins/plugin-name i've also tried using 'sudo ln'. but…
krozero
  • 5,929
  • 3
  • 21
  • 33
5
votes
2 answers

Syntax Error: Support for the experimental syntax 'jsx' isn't currently enabled in react js

i am trying run my react application using npm start commamnd and installed both @babel/preset-react and @babel/plugin-syntax-jsx. but i am running this react application getting following error. Support for the experimental syntax 'jsx' isn't…
5
votes
0 answers

How to share localhost using JetBrains's plugin "Code With Me"?

I'm trying to enable sharing of localhost:5000 for all users, who joined my invite link. I've already done this before by using Visual Studio Code with "Live Share" but I can't find a way how to do that in WebStorm.
GlKosh
  • 67
  • 6
5
votes
2 answers

I can't update the gradle plugin version to 4.1.3

My current Gradle plugin version is 4.1.2 and this version working correctly but when I update to 4.1.3 I get this error and I can't build the project: Note:I added maven() and jcenter(). A problem occurred configuring root project…
Saeed Noshadi
  • 829
  • 12
  • 34
5
votes
3 answers

Browser Java Plugin Detection

What is the preferred method to determine if the Sun Java Plugin is installed in the browser?
ghempton
  • 7,777
  • 7
  • 48
  • 53
5
votes
0 answers

Can I debug flutter android plugins from within VSCode?

I expect the answer is 'no' from what I've already found, but thought I'd ask the specific question. I have a Flutter app which via a channel calls into an android plugin the java source for which is in the app source tree. Since one can also do…
5
votes
2 answers

How to provide an API to extend a Python program with plugins?

I was wondering how I can provide an API for my Python program to enable others to extend it with plugins. I thought about something like from myProgram.plugins import aClassToExtendByOthers, registerThatClass. But I have no idea how to provide…
Niklas R
  • 16,299
  • 28
  • 108
  • 203
5
votes
1 answer

How to detect file changes in Intellij-idea?

I want to build a simple idea plugin, which will detect the changes of a kind of file, then convert them to another format. Current, I use such code to do this: VirtualFileManager.getInstance().addVirtualFileListener(new VirtualFileAdapter() { …
Freewind
  • 193,756
  • 157
  • 432
  • 708
5
votes
0 answers

VS 2008 Addin -> How to add a submenu at a specific position in a context menu?

I'm working on an addin for Visual Studio 2008 and want to add a permanent submenu to contain my context-sensitive commands to several context menus (such as "Project", "Item", ...). I have had no problem adding this submenu to the top of the…
Nicolas
  • 51
  • 1
5
votes
1 answer

Cannot find keymap 'Windows Proper Redo"

A message is appearing in pycharm Missing Keymap Cannot find keymap 'Windows Proper Redo" I don't know what this message means and how to solve it. Please help
Bibek Paul
  • 142
  • 2
  • 9
5
votes
1 answer

Failed in error “plugin was built with a different version of package” while debugging

I built my .so file: go build -buildmode=plugin -o test.so and run debug with Goland, then I get the error: Error running agent: could not initialize input inputs.plugin_input: plugin.Open("./plugins_lib/test1"): plugin was built with a different…
hxysayhi
  • 1,888
  • 18
  • 25
5
votes
3 answers

Is there a Ctags like tool for browsing/navigating XSLT code in Vim?

Need a way to navigate/browse XSLT files easily with Vim. Similar to the way ctags can be used with C/C++ source code. A good solution would allow installing scripts etc only for self or running them directly from inside Vim. Hate having to step…
GuruM
  • 865
  • 11
  • 20
5
votes
1 answer

How does FastAPI's application mounting works?

For certain reasons, we have chosen the FastAPI, in order to use it as back-end tier of our multi-module production. One of its attractive features is sub application, that helps us to separate different modules with intention of making it more…
1 2 3
99
100