Skip to content
atom logo

Atom

Atom is a modern open source text editor developed by GitHub. It is designed to be approachable out of the box yet highly customizable. Atom is built using web technologies: the look and feel can be customized using CSS and new features can be added with HTML and JavaScript. There are also thousands of community created themes and packages available.

Here are 2,172 public repositories matching this topic...

wadethestealth
wadethestealth commented Jun 22, 2019

Documentation Changes Needed:

  • 1. Move cell information to a more visible location (and maybe multiple locations or redirect with header link)
    • Seems like their is a lot of information regarding cells and how to make them in docs/Usage/NotebookFiles.md, this should be moved somewhere else. Not everyone may be importing and exporting. A good place could be in the "Gettting Started"
Flamefire
Flamefire commented Feb 8, 2019

The memory primitives are created using a void-pointer: memory(const primitive_desc &adesc, void *ahandle)

If I have code like this:

std::vector<float> foo(const std::vector<float>& input){
  auto engine = ...;
  auto desc = ...;
  auto memory = memory({desc, engine}, input.data);
  // Call some operator and return result from another buffer
}
  • What happens to my memory?
pabloemmanueldeleo
pabloemmanueldeleo commented Mar 20, 2018

Description

Dont have support for maxscript

Input Before Beautification

This is what the code looked like before:

	fn readLayers prefix:"01-" =(
		arrayLayersName=#()
		arrayLayersOnOff=#()
		aLayers=#()
		clearSelection()
		
		if not LayerManager.count-1 == 0 then(
			
			for i= 1 to (LayerManager.count-1) do(
				
				ilayer = layerManager.getLayer i
				
				if 
matthewwithanm
matthewwithanm commented Jul 17, 2017

Atom notifications can't be dismissed using escape when vim-mode-plus is installed. To repro:

  1. Trigger a notification (atom.notifications.addError('hi'))
  2. With the editor focused, hit esc. (Nothing happens.)
  3. Trigger "Core: Cancel" from the command palette to see how it should work.
  • Atom version: 1.19.0-beta4
  • vim-mode-plus version: 0.94.0
  • OS: macOS Sierra 10.12.4
  • vim mod
github
You can’t perform that action at this time.