Scala Play and IntelliJ support for routes file - scala

As the title says, I can't figure out how to make IntelliJ support routes file.
In the image below routes are red-coloured and under ctrl+space there is no prompt with available controllers' methods
How to enable it? I've searched whole google and nothing helped me. Any ideas?
Thanks in advance!

I have figured out the answer. Here is the bug ticket: https://youtrack.jetbrains.com/issue/SCL-8812
And for now the solution is to add # before controllers.Application.index
GET / #controllers.Application.index
And then everything is prompted and works well

Related

I cannot disable the cloudformation snippets/suggestions in VS Code

I am trying to disable (an annoying) AWS Cloudformation suggestions/snippets because they are cluttering my suggestions:
It seems impossible to find where these are coming from:
I disabled the AWS Plugins, no help.
Tried to find the snippets with "Insert snippet", but couldn't find anything to match.
Tried to google on the keywords but couldn't get a match due to them being so generic.
Can someone tell me:
Where can I find the source of these suggestions/snippets?
How to disable them?
Thank you
For anyone with the same confusion, I fixed it:
So I started looking in the /Users/<user>/Library/Application Support/Code/User folder and searched for "!GetAZs" and found that they are apparently "custom YAML" snippets located in settings.json. I removed them from the list. That fixed it. No idea where they came from, I think from some extension that does not remove them on uninstall.

stucked in flutter with many issues

I want to ensure codes works on emulator.
I just tried to run the preset flutter codes. I saw there is Turkish words on path, I changed that. But it didn't change in path.
I just moved the location of project and it worked ! Still don't know how or why but it works anyway.
Thanks to everyone
(I will add the answer tag asap.)

VS Code - File Explorer / Explorer change case

Sorry if the question is bit silly, but on Ubuntu 16.4 I am trying out code editors for Angular 2. VS Code appeals because of TypeScript. But when I open a location the directory name in File Explorer is in ALL CAPS even though I don't use CAPS in directory names? Googling didn't help. Perhaps I am missing something.
How can I change it show my directory name exactly as it is in Ubuntu please? I have tried to look into settings.json etc but no joy.
Cheers.
if you mean this (see the image below), that would be a standard behaviour and has nothing to do with actual size of the letters. As far as I can tell, you cannot change this.
Well I went to GitHub as suggested but they have sadly declined (click) to do anything about this as some "as designed" thing, whatever that means. Pretty bad, but okay whatever.
Use this to customise. https://gist.github.com/Hendrixer/7a250a2be529cda8939de8305c9a85a1
It's just another chromium based renderer. Open developer console and customise anything you like.

Wordpress search also shows

I'm trying Agolia to see if it is something for our websites. So I did a little test on one of our websites (click here, it works but you also get the original dropdown. Does anyone know how to prevent this?
The theme you are using does come shipped with a built-in autocomplete experience.
You should disable that one.
An easy fix for you would be to comment all the code in this file https://eezo.nl/wp-content/themes/yoo_venice_wp/warp/vendor/uikit/js/components/search.js

How does the doT.js Plugin for PHPstorm work?

I want to use doT.js-Templates in JetBrains PHPStorm.
I found a plugin on the JetBrains Plugin-Site http://plugins.jetbrains.com/plugin/7327?pr=idea for doT-Templates.
I installed it and restarted the IDE, but it doesn't seem like anything has changed.
The Github-Page or the description don't tell anything about what exactly the plugin does or how it works.
Does anyone know what this plugin does?
Or does anyone know another way for achieving syntax highlighting or IntelliSense for dotJS-Templates in PHPStorm?
I found the solution myself.
In order for the doT-Plugin to highlight doT-Template-Sytax, I had to create files with the .dot-extension instead of the ".html" extension I had before.
But if anyone sees this and decides to use this solution, be aware that changing your .html-Files to .dot-Files wrecks PHPStorm's autocompletion of html-Code inside of these files.