Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manage encoding files by extension of filenames #4891

Closed
FrancisFaure opened this issue Apr 3, 2016 · 46 comments
Closed

Manage encoding files by extension of filenames #4891

FrancisFaure opened this issue Apr 3, 2016 · 46 comments
Assignees
Labels
feature-request Request for new features or functionality file-explorer Explorer widget issues on-testplan

Comments

@FrancisFaure
Copy link

Hello "VS Code" team,

But in the same directory we can have files in utf8 and others in "Western" (Windows 1252) codepage

I tried to add "files.encoding": "windows1252" in my language pack (package.json) without success..

I googled without solutions

sorry for my bad english

With best regards
Francis

@bpasero bpasero changed the title Manage encoding files by extension of filenames Allow to configure encoding per file or folder Apr 4, 2016
@bpasero bpasero added feature-request Request for new features or functionality file-explorer Explorer widget issues labels Apr 4, 2016
@bpasero bpasero added this to the Backlog milestone Apr 4, 2016
@bpasero
Copy link
Member

bpasero commented Apr 4, 2016

Currently you can only configure encoding per workspace folder.

@FrancisFaure
Copy link
Author

Thank for the quick answer...
Have you plan to manage encoding files by extension of filenames ?
with by example add property "files.encoding" in file "package.json" of VS Code extension language.
Because same folder could have files encoded 1252 and others utf8
with best regards
Francis

@FrancisFaure FrancisFaure changed the title Allow to configure encoding per file or folder manage encoding files by extension of filenames Apr 4, 2016
@FrancisFaure
Copy link
Author

please,
have you planned an VSCode update for allow add "files.encoding": "windows1252" in extension language package.json file?
or a way for open files by extension of filenames encoded 1252 and not utf8 (we need to open *.PRG files in 1252)
Thanks

@buzzzzer
Copy link

Any news for files.encoding in extention API or by fileext ?
On my project 3 different encodings in over 1000 files.
And reopen the file each time - just killing me...
Please schedule this feature..;(

afable pushed a commit to afable/rDukieAthena that referenced this issue Aug 4, 2016
@cheery
Copy link

cheery commented Aug 6, 2016

I am also affected by this issue.

Please fix it.

@bpasero
Copy link
Member

bpasero commented Aug 15, 2016

#1587

@bpasero bpasero closed this as completed Aug 15, 2016
@bpasero bpasero added the *duplicate Issue identified as a duplicate of another issue(s) label Aug 15, 2016
@frankcai
Copy link

@bpasero That didn't fix the issue. We can now change editor.* settings but not the encoding setting.

@bpasero bpasero reopened this Mar 13, 2017
@bpasero bpasero changed the title manage encoding files by extension of filenames Manage encoding files by extension of filenames Mar 13, 2017
@bpasero bpasero removed the *duplicate Issue identified as a duplicate of another issue(s) label Mar 13, 2017
@bpasero bpasero removed their assignment Mar 13, 2017
@bpasero bpasero removed this from the Backlog milestone Mar 13, 2017
@ianmaurinsoucy
Copy link

I am also affected by this issue. I have many files in the same folders with different encoding... I can't use VSCode because of this.

@FrancisFaure
Copy link
Author

I left my volunteer work on VS Code because of this encoding problem that was ignored. cordially

@Somnium7
Copy link

Somnium7 commented Apr 6, 2017

We also need possibility to set different encoding for different file extensions. Maybe it's possible to write an extension for this?

@FrancisFaure
Copy link
Author

to "Somnium7",
Hi
I work a lot (volunteer) on VS Code for manage encoding files by extension of filenames (in example like .HTML -> UTF8 and .PRG -> 1512 in the same directory)
But Microsoft ignore this request : it seem he want only manage UTF8 encoding or encoding per directories,
(Or bpassero haven't understood my request with my bad english)
The solution can be only an new line in package.json file or other way. but ignored.
if you find a solution for "set different encoding for different file extensions" : I'll happy
with best regards
Francis

@Fred-Vatin
Copy link

Fred-Vatin commented May 3, 2017

I tried to add

"[bat]": {
    "files.encoding": "cp437",
    "files.autoGuessEncoding": false,
    "editor.fontFamily": "Consolas, 'Courier New', monospace"
}

to the settings.json

files.encoding and files.autoGuessEncoding triggers an issue displayed in the tooltip on mouseover: Unknown identifier. Use language identifiers.

It is impossible now to set those settings as per language rule, please fix it.

VS Code 1.11.2 on Win 10 x64
Edit: still an big issue in v 1.15.0 insider

@z639
Copy link

z639 commented May 6, 2017

What I find funny is that my old>old editor of choice (Notepad++) is able to auto detect the file encoding and yet VS Code with all its bells and whistles that make it a far better editor can't even manage to do the same.

At the very least you would think that we would be able to tell the editor to use X encoding for Y file type.

@jhonrocha
Copy link

This problem is still not solved? It is the biggest miss of Code right now ... Please, take it seriously for a moment. I never lost an afternoon replacing bad chars due a miss while saving a file on Sublime ...

@Fred-Vatin
Copy link

Guys, you have to vote for the first post (thumb up) so this issue may be taken seriously. With only 2 votes everybody won't care even if it's an annoying issue.

@Raydir
Copy link

Raydir commented Aug 24, 2017

voted for this issue.

@roffelsaurus
Copy link

"files.autoGuessencoding": true worked for me auto detecting win1252 on opening. The changes in @workflo link seem to at least have given a workaround for this issue.

@BlackOnion
Copy link

BlackOnion commented Sep 6, 2017

Voted for this issue.
I like VSCode very much, but not be able to set the encoding per file extension is a absolute no go. Even every normal text editor need this feature. I used it in the last millennium.

@bpasero
Copy link
Member

bpasero commented Sep 9, 2017

Trying to understand the requirements here. So far I have seen various requests to associate a file encoding

It seems to me that being able to define the encoding by path is most powerful because it would allow to define the encoding for particular files in specific folders. And it would also allow to define for all files in all folders of a specific extension.

The beauty however of allowing to define the encoding by language is that we already have support for defining settings per language. The syntax is:

"[markdown]":  {
  "editor.wordWrap": "on",
  "editor.quickSuggestions": false
}

And so I could envision a setting such as:

"[markdown]":  {
  "files.encoding": "some encoding"
}

There is another related setting where you can define which extension maps to which language (files.association).

The downside of this solution though is that you cannot set the encoding for a subset of files of a language. It would always apply to all files of that language.

@Somnium7
Copy link

Somnium7 commented Sep 9, 2017

@bpasero I think that defining by path should allow wildcards to be able to match files by extension only. However, it could be harder to implement than detecting by language, because it needs new configuration syntax. For my personal needs, detection by language suffices. Let's see, what other people think.

@ElCondor1969
Copy link

I agree with @Somnium7 . Detection by language is the simplest and, at present, the fastest thing to implement.

@workflo
Copy link

workflo commented Sep 11, 2017

I would like to add a fourth alternative to @bpasero's proposal:
It would be great if I could annotate an arbitrary text file and explicitly tell VSC which encoding to use. This was one of (X)Emacs' features I really liked:
// -*- coding: latin1 -*-

Emacs also allows overriding other settings like indentation mode, tab width and the like this way.

@bpasero
Copy link
Member

bpasero commented Sep 11, 2017

I have pushed a change that allows to configure the encoding per language in settings (see #19890 (comment)). Will be available in tomorrows insider release. I think we should see how it goes with this support before we introduce more powerful settings.

@BlackOnion
Copy link

Thank you, Benjamin.
I used the insider for a very small test and it worked for me.

@bpasero
Copy link
Member

bpasero commented Sep 15, 2017

@FrancisFaure ok to close?

@FrancisFaure
Copy link
Author

FrancisFaure commented Sep 15, 2017

Hi @bpasero,
I don't had/took time to test the solution of this issue (I work on vscode on my free time and my english is poor) I think I can work on that: this week-end.
(If in the same directory we can have some files with differents encoding : ie .PRG in cp1252, .XML in utf8, ... and if I can set encoding for .PRG (in any directories) that could be great)
with best regards
Francis

@bpasero
Copy link
Member

bpasero commented Sep 15, 2017

@FrancisFaure yes, the current solution allows to change the encoding for language types. This is possible globally or per workspace folder.

@FrancisFaure
Copy link
Author

Hi @bpasero
when you write "language types" = that mean by extension of filenames (ie : .PRG, .BAT, .CMD, .XML...) ?
is it a setting in package.json of language extension ? other ? (if other have you a url link for read and test please)
Regards

@bpasero
Copy link
Member

bpasero commented Sep 15, 2017

@FrancisFaure this is an indirection: multiple extensions can be associated with one language. I suggest you give it a try and report back how it works for you.

@FrancisFaure
Copy link
Author

Hi @bpasero
ok I will work on the subject this weekend,
Thank you
I'll let you informed after finding the links on VSCODE to define a "language type" to link the extension .PRG + tests
If you want, you can close the subject and if necessary reopen it if it does not work?
(Sorry for my bad English)
regards

@bpasero bpasero closed this as completed Sep 15, 2017
@bpasero bpasero self-assigned this Sep 15, 2017
@bpasero bpasero added this to the September 2017 milestone Sep 15, 2017
@jhonrocha
Copy link

jhonrocha commented Sep 15, 2017

Hello @bpasero
I just tried the insiders version. They're working perfectly on both global and workspace settings!
Thank you, best regards

// ---- My settings.json ----
{
    "[asp]":{
      "files.encoding": "iso88591"
    },
    "[javascript]":{
      "files.encoding": "utf8"
    },
    "[html]":{
      "files.encoding": "utf8"
    }
}

@FrancisFaure
Copy link
Author

Hi @bpasero,
I tested with VS Code Insider :

a) I added in my settings (stored in C:\Users\USER\AppData\Roaming\Code - Insiders\User\settings.json):

    "[vfp]":{
        "files.encoding": "windows1252"
    }

that work well.

b) I removed my settings of §a
and added in my package.json language :

	"contributes": {
		"configurationDefaults": {
		  "[vfp]": {
			"files.encoding": "windows1252"
		  }
		}...

and that work ! great ! it's what I needed :)
with best regards
Francis

@Raydir
Copy link

Raydir commented Oct 2, 2017

works like a bomb

@Somnium7
Copy link

Somnium7 commented Oct 9, 2017

@bpasero
Doesn't work search in multiple files without Ripgrep (haven't tested with it, don't need it).
I have files which need "maccenteuro" encoding, let assume it is Javascript.
With following configuration search works in all files except ".js".
"search.useRipgrep": false
With following configuration works in none files except ".js".
"search.useRipgrep": false,
"files.encoding": "maccenteuro"
With following configuration search should work for all files (seems logic), however, it works in all files except ".js" (like first case):
"search.useRipgrep": false,
"[javascript]": {
"files.encoding": "maccenteuro"
}
Note that when opening actual files encoding is working properly, only search in multiple files doesn't work. Also note that when testing, you should use symbols with diacritics, which have different representations in different encodings.

Tested in VSCode version 1.17.0 on Windows 10

@buzzzzer
Copy link

@bpasero
Search in multiple files doesn't work with setting by language
Win10 1.17.0 release

@bpasero
Copy link
Member

bpasero commented Oct 10, 2017

@roblourens is aware of that limitation afaik.

@Somnium7
Copy link

@roblourens Are you (or another person) going to fix this? Maybe a new issue should be created?

@roblourens
Copy link
Member

This is the library that would have to support those encodings: https://github.com/hsivonen/encoding_rs

It's probably unlikely, as it's not a standard encoding.

@vscodebot vscodebot bot locked and limited conversation to collaborators Nov 17, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
feature-request Request for new features or functionality file-explorer Explorer widget issues on-testplan
Projects
None yet
Development

No branches or pull requests